Explorar el Código

make links to statup scripts in /etc/rc.d relative

SVN-Revision: 12659
Nicolas Thill hace 17 años
padre
commit
7218e6326f
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      package/base-files/files/etc/rc.common

+ 2 - 2
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() {