diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -470,8 +470,9 @@ endif ) > $(TARGET_DIR)/etc/os-release ifneq ($(BR2_ROOTFS_POST_BUILD_SCRIPT),"") - @$(call MESSAGE,"Executing post-build script") - $(BR2_ROOTFS_POST_BUILD_SCRIPT) $(TARGET_DIR) + @$(call MESSAGE,"Executing post-build script\(s\)") + @$(foreach s, $(call qstrip,$(BR2_ROOTFS_POST_BUILD_SCRIPT)), \ + $(s) $(TARGET_DIR)$(sep)) endif ifeq ($(BR2_ENABLE_LOCALE_PURGE),y) |