]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
fix init script install rules for linux and darwin
authorDerrick Brashear <shadow@dementia.org>
Mon, 20 Jul 2009 13:40:26 +0000 (09:40 -0400)
committerRuss Allbery <rra@stanford.edu>
Mon, 20 Jul 2009 13:50:07 +0000 (06:50 -0700)
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 <sxw@inf.ed.ac.uk>
Tested-by: Russ Allbery <rra@stanford.edu>
Reviewed-by: Russ Allbery <rra@stanford.edu>
src/afsd/Makefile.in

index 73b6234411e49c4d21c67a79874466f50c33413e..cdb488aecdbb9897480745c9c1f75d5bc220ec11 100644 (file)
@@ -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 ; \