From: Derrick Brashear Date: Mon, 20 Jul 2009 13:40:26 +0000 (-0400) Subject: fix init script install rules for linux and darwin X-Git-Tag: openafs-devel-1_5_61~83 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=7ee55ba59f39587591b4e3af0702889a24d5e118;p=packages%2Fo%2Fopenafs.git fix init script install rules for linux and darwin the mode needs to be provided before src dest; do so, so we get boot scripts again Reviewed-on: http://gerrit.openafs.org/http://gerrit.openafs.org/156 Reviewed-by: Simon Wilkinson Tested-by: Russ Allbery Reviewed-by: Russ Allbery --- diff --git a/src/afsd/Makefile.in b/src/afsd/Makefile.in index 73b623441..cdb488aec 100644 --- a/src/afsd/Makefile.in +++ b/src/afsd/Makefile.in @@ -109,11 +109,11 @@ dest: afsd vsys ${INSTALL_SCRIPT} ${srcdir}/afs.rc.hpux10 ${DEST}/root.client/usr/vice/etc/dkload/afs.rc ;;\ *linux* ) \ ${INSTALL} -d ${DEST}/root.client/usr/vice/etc ; \ - ${INSTALL_SCRIPT} ${srcdir}/afs.rc.linux -m 755 ${DEST}/root.client/usr/vice/etc/afs.rc; \ + ${INSTALL_SCRIPT} -m 755 ${srcdir}/afs.rc.linux ${DEST}/root.client/usr/vice/etc/afs.rc; \ ${INSTALL_DATA} ${srcdir}/afs.conf.linux ${DEST}/root.client/usr/vice/etc/afs.conf ;; \ *_darwin*) \ ${INSTALL} -d ${DEST}/root.client/usr/vice/etc ; \ - ${INSTALL_SCRIPT} ${srcdir}/afs.rc.darwin -m 755 ${DEST}/root.client/usr/vice/etc/afs.rc ; \ + ${INSTALL_SCRIPT} -m 755 ${srcdir}/afs.rc.darwin ${DEST}/root.client/usr/vice/etc/afs.rc ; \ ${INSTALL_DATA} ${srcdir}/afs.rc.darwin.plist ${DEST}/root.client/usr/vice/etc/StartupParameters.plist ;; \ *fbsd*) \ ${INSTALL} -d ${DEST}/root.client/usr/vice/etc ; \