diff options
author | DJ Lucas <dj@linuxfromscratch.org> | 2011-05-23 03:43:35 +0000 |
---|---|---|
committer | DJ Lucas <dj@linuxfromscratch.org> | 2011-05-23 03:43:35 +0000 |
commit | 90b457477d7909f501615eec5a18efd29944298a (patch) | |
tree | b2a6cce7001b1b62bf62a699aeebd2ffb3775da7 /lsb-bootscripts | |
parent | 5393dbc1b82fd39c18f110da9f02e1ae6ad922cf (diff) |
Fix symlink on DESTDIR installation.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9551 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'lsb-bootscripts')
-rw-r--r-- | lsb-bootscripts/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lsb-bootscripts/Makefile b/lsb-bootscripts/Makefile index 23a375ebb..d216c86d6 100644 --- a/lsb-bootscripts/Makefile +++ b/lsb-bootscripts/Makefile @@ -22,7 +22,7 @@ create-dirs: install -d -m ${DIRMODE} ${DESTDIR}/sbin install -d -m ${DIRMODE} ${DESTDIR}/lib/lsb install -d -m ${DIRMODE} ${DESTDIR}/lib/network-services - if [ ${ETCDIR} != /etc ]; then ln -s ${DESTDIR}${ETCDIR}/init.d ${DESTDIR}/etc/init.d; fi + if [ ${ETCDIR} != /etc ]; then ln -s ${ETCDIR}/init.d ${DESTDIR}/etc/init.d; fi install: create-dirs install -m ${MODE} etc/init.d/checkfs ${EXTDIR}/init.d/ |