From: Chaskiel M Grundman Date: Mon, 28 Apr 2008 04:45:03 +0000 (+0000) Subject: kdump-install-fixups-20080427 X-Git-Tag: openafs-devel-1_5_61~1104 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=7a6751c08800da5d49bf3def9175174499f6337e;p=packages%2Fo%2Fopenafs.git kdump-install-fixups-20080427 LICENSE IPL10 FIXES 96465 The install rule: - installs the empty 'kdump-build' file instead of the binary on all platforms except irix - overwrites the selection script with the binary on linux and hpux - doesn't have an alpha_linux branch - installs the wrapper script as kdump32 and the binary as kdump on solaris (instead of vice-versa) The dest rule: - overwrites the selection script with the binary on alpha_linux and hpux --- diff --git a/src/venus/Makefile.in b/src/venus/Makefile.in index b07ce83ed..3efc73d9e 100644 --- a/src/venus/Makefile.in +++ b/src/venus/Makefile.in @@ -319,12 +319,12 @@ dest: kdump-build fs livesys up fstrace cmdebug ${INSTALL_PROGRAM} ${srcdir}/kdump ${DEST}/etc/kdump32;; \ *alpha_linux* ) \ ${INSTALL_SCRIPT} ${srcdir}/kdump.sh.linux ${DEST}/etc/kdump; \ - ${INSTALL_PROGRAM} kdump-alpha_linux-${LINUX_VERSION} ${DEST}/etc/kdump ;; \ + ${INSTALL_PROGRAM} kdump-alpha_linux-${LINUX_VERSION} ${DEST}/etc/kdump-${LINUX_VERSION} ;; \ *linux* ) \ ${INSTALL_SCRIPT} ${srcdir}/kdump.sh.linux ${DEST}/etc/kdump; \ ${INSTALL_PROGRAM} kdump-linux-${LINUX_VERSION} ${DEST}/etc/kdump-${LINUX_VERSION} ;; \ hp_ux11* ) \ - ${INSTALL_SCRIPT} ${srcdir}/kdump.sh.hp_ux11 ${DEST}/etc/kdump; \ + ${INSTALL_SCRIPT} ${srcdir}/kdump.sh.hp_ux11 ${DEST}/etc/kdump32; \ ${INSTALL_PROGRAM} kdump-build ${DEST}/etc/kdump ;; \ *bsd*) \ ;; \