summaryrefslogtreecommitdiff
path: root/target/imagebuilder
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2009-04-21 11:20:25 +0000
committerNicolas Thill <nico@openwrt.org>2009-04-21 11:20:25 +0000
commit3f8ac1680c95b1989b11818f12b5cc324f89cbb5 (patch)
tree326ddacaf36272a62e9fa4a8c8b6fe7300f0374c /target/imagebuilder
parent210254c2792b8e3eb155c459e41ac2b66864acd3 (diff)
downloadmtk-20170518-3f8ac1680c95b1989b11818f12b5cc324f89cbb5.zip
mtk-20170518-3f8ac1680c95b1989b11818f12b5cc324f89cbb5.tar.gz
mtk-20170518-3f8ac1680c95b1989b11818f12b5cc324f89cbb5.tar.bz2
fix initscripts activation (closes: #4037, #4745)
SVN-Revision: 15320
Diffstat (limited to 'target/imagebuilder')
-rw-r--r--target/imagebuilder/files/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/target/imagebuilder/files/Makefile b/target/imagebuilder/files/Makefile
index e8bd28f..b526925 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; \
)