From: nico Date: Tue, 21 Apr 2009 11:20:25 +0000 (+0000) Subject: [imagebuilder] fix initscripts activation (closes: #4037, #4745) X-Git-Url: http://git.ozo.com/?a=commitdiff_plain;ds=sidebyside;h=0738089ffd1d43806662fe81b088f4ccc75aecb3;hp=176570cee9db5f34422746cfb8b786c5e7243697;p=openwrt-10.03%2F.git [imagebuilder] fix initscripts activation (closes: #4037, #4745) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15320 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/target/imagebuilder/files/Makefile b/target/imagebuilder/files/Makefile index e8bd28f31..b52692517 100644 --- a/target/imagebuilder/files/Makefile +++ b/target/imagebuilder/files/Makefile @@ -131,10 +131,10 @@ package_postinst: FORCE @echo @echo Activating init scripts @( \ - cd $(BUILD_DIR)/root; \ + cd $(TARGET_DIR); \ for script in ./etc/init.d/*; do \ grep '#!/bin/sh /etc/rc.common' $$script >/dev/null || continue; \ - IPKG_INSTROOT=$(BUILD_DIR)/root $(which bash) ./etc/rc.common $$script enable; \ + IPKG_INSTROOT=$(TARGET_DIR) $(which bash) ./etc/rc.common $$script enable; \ done || true; \ )