Browse Source

fix non verbose build

Waldemar Brodkorb 9 years ago
parent
commit
d9d4e376a2
3 changed files with 2 additions and 2 deletions
  1. 1 1
      mk/fetch.mk
  2. 0 0
      scripts/postimage/.empty
  3. 1 1
      target/Makefile

+ 1 - 1
mk/fetch.mk

@@ -28,7 +28,7 @@ ifeq ($(strip ${PKG_NOCHECKSUM}),)
 ${_CHECKSUM_COOKIE}: ${FULLDISTFILES}
 	-rm -rf ${WRKDIR}
 ifneq ($(ADK_DISABLE_CHECKSUM),y)
-	@if [ ! -e ${FULLDISTFILES}.nohash ]; then \
+	@if [ ! -e "${FULLDISTFILES}.nohash" ]; then \
 	OK=n; \
 	allsums="$(strip ${PKG_HASH})"; \
 	(shasum -a 256 ${FULLDISTFILES}; echo exit) | while read sum name; do \

+ 0 - 0
scripts/postimage/.empty


+ 1 - 1
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