linux-install-kdump-with-make-rules-that-work-20010119
authorDerrick Brashear <shadow@dementia.org>
Fri, 19 Jan 2001 22:11:24 +0000 (22:11 +0000)
committerDerrick Brashear <shadow@dementia.org>
Fri, 19 Jan 2001 22:11:24 +0000 (22:11 +0000)
gmake doesn't like $?-$$lv; It's easier to just do it this way.

src/venus/Makefile

index cf07e39..787e1ea 100644 (file)
@@ -89,7 +89,7 @@ ${DESTDIR}etc/kdump: kdump
                ${INSTALL} -s -f $? ${DESTDIR}etc/kdump32;; \
        *linux* ) \
                for lv in ${LINUX_VERS}; do \
-                       ${INSTALL} -s $?-$$lv $@-$$lv ; \
+                       ${INSTALL} -s kdump-$$lv ${DESTDIR}etc/kdump-$$lv ; \
                done ;; \
        hp_ux11* ) \
                ${INSTALLex} -f kdump.sh.hp_ux11 $@; \