diff options
| author | Nicolas Thill | 2009-04-21 11:20:25 +0000 |
|---|---|---|
| committer | Nicolas Thill | 2009-04-21 11:20:25 +0000 |
| commit | ff6e2a39bcad238fc3d4d14c54b5e28fcdc74e0f (patch) | |
| tree | 5f9243291d67222329c52b1805bbd82336c3f651 | |
| parent | 472dd379ada23bcadb4e68c6f8f41d1bb2a6d337 (diff) | |
| download | archive-ff6e2a39bcad238fc3d4d14c54b5e28fcdc74e0f.tar.gz | |
[imagebuilder] fix initscripts activation (closes: #4037, #4745)
SVN-Revision: 15320
| -rw-r--r-- | target/imagebuilder/files/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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; \ ) |