diff options
Diffstat (limited to 'target/Makefile')
-rw-r--r-- | target/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/Makefile b/target/Makefile index 24403f53a..669a4333b 100644 --- a/target/Makefile +++ b/target/Makefile @@ -135,7 +135,7 @@ clean: $(ADK_TARGET_ARCH)-clean $(ADK_TARGET_ARCH)-imageclean %-imageinstall: %-imageprepare $(TRACE) target/$(patsubst %-imageinstall,%,$@)-imageinstall $(MAKE) -C $(patsubst %-imageinstall,%,$@) imageinstall - for x in $$(ls $(ADK_TOPDIR)/scripts/postimage/*.sh); do \ + for x in $$(ls $(ADK_TOPDIR)/scripts/postimage/*.sh 2>/dev/null); do \ [[ -x "$$x" ]] && $$x; \ break; \ done |