From: Derrick Brashear Date: Fri, 19 Jan 2001 22:11:24 +0000 (+0000) Subject: linux-install-kdump-with-make-rules-that-work-20010119 X-Git-Tag: BP-openafs-devel-autoconf~106 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=7f6f446ad0f007d85b25280947301c36fa0e862f;p=packages%2Fo%2Fopenafs.git linux-install-kdump-with-make-rules-that-work-20010119 gmake doesn't like $?-$$lv; It's easier to just do it this way. --- diff --git a/src/venus/Makefile b/src/venus/Makefile index cf07e39c0..787e1eab2 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 $@; \