From 7f6f446ad0f007d85b25280947301c36fa0e862f Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Fri, 19 Jan 2001 22:11:24 +0000 Subject: [PATCH] linux-install-kdump-with-make-rules-that-work-20010119 gmake doesn't like $?-$$lv; It's easier to just do it this way. --- src/venus/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/venus/Makefile b/src/venus/Makefile index cf07e39..787e1ea 100644 --- a/src/venus/Makefile +++ b/src/venus/Makefile @@ -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 $@; \ -- 1.9.4