From: Nicolas Thill Date: Tue, 23 Sep 2008 12:35:34 +0000 (+0000) Subject: make links to statup scripts in /etc/rc.d relative X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=aef6dac58f1eb4b163395492a56a91d947509c86 make links to statup scripts in /etc/rc.d relative SVN-Revision: 12659 --- diff --git a/package/base-files/files/etc/rc.common b/package/base-files/files/etc/rc.common index 6b3c213a1d..4f1a4a3a08 100755 --- a/package/base-files/files/etc/rc.common +++ b/package/base-files/files/etc/rc.common @@ -38,8 +38,8 @@ disable() { enable() { name="$(basename "${initscript}")" disable - [ "$START" ] && ln -s "/etc/init.d/$name" "$IPKG_INSTROOT/etc/rc.d/S${START}${name##S[0-9][0-9]}" - [ "$STOP" ] && ln -s "/etc/init.d/$name" "$IPKG_INSTROOT/etc/rc.d/K${STOP}${name##K[0-9][0-9]}" + [ "$START" ] && ln -s "../init.d/$name" "$IPKG_INSTROOT/etc/rc.d/S${START}${name##S[0-9][0-9]}" + [ "$STOP" ] && ln -s "../init.d/$name" "$IPKG_INSTROOT/etc/rc.d/K${STOP}${name##K[0-9][0-9]}" } enabled() {