Просмотр исходного кода

fix initscripts activation (closes: #4037, #4745)

SVN-Revision: 15320
Nicolas Thill 16 лет назад
Родитель
Сommit
3f8ac1680c
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      target/imagebuilder/files/Makefile

+ 2 - 2
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; \
 	)