make links to statup scripts in /etc/rc.d relative
authorNicolas Thill <nico@openwrt.org>
Tue, 23 Sep 2008 12:35:34 +0000 (12:35 +0000)
committerNicolas Thill <nico@openwrt.org>
Tue, 23 Sep 2008 12:35:34 +0000 (12:35 +0000)
SVN-Revision: 12659

package/base-files/files/etc/rc.common

index 6b3c213a1d81a38b34cbfc2a50b8002e7e182b3c..4f1a4a3a086331177a97de15d696cae97fef9725 100755 (executable)
@@ -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() {