From: Nicolas Thill Date: Tue, 21 Apr 2009 11:20:25 +0000 (+0000) Subject: fix initscripts activation (closes: #4037, #4745) X-Git-Tag: 8.09.1~105 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=d2b3cec9dc5de3416ac032b1f03d69ae1ebadacb;p=openwrt%2Fsvn-archive%2Fopenwrt.git fix initscripts activation (closes: #4037, #4745) SVN-Revision: 15320 --- diff --git a/target/imagebuilder/files/Makefile b/target/imagebuilder/files/Makefile index e8bd28f318..b526925177 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; \ )