aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2008-09-23 12:35:34 +0000
committerNicolas Thill <nico@openwrt.org>2008-09-23 12:35:34 +0000
commitb6879de8281b6cbb43348d87ff7da2e1cb02c1dd (patch)
tree06c4efa2819361f442d35617b3b764821d43e54e
parent8c7ea226752bb7aed29894dbb9f1c81635c61147 (diff)
downloadupstream-b6879de8281b6cbb43348d87ff7da2e1cb02c1dd.tar.gz
upstream-b6879de8281b6cbb43348d87ff7da2e1cb02c1dd.tar.bz2
upstream-b6879de8281b6cbb43348d87ff7da2e1cb02c1dd.zip
make links to statup scripts in /etc/rc.d relative
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12659 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-xpackage/base-files/files/etc/rc.common4
1 files changed, 2 insertions, 2 deletions
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() {