diff options
author | Waldemar Brodkorb <wbrodkorb@conet.de> | 2015-02-10 10:38:49 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbrodkorb@conet.de> | 2015-02-10 10:38:49 +0100 |
commit | d9d4e376a2ea0ca781cd3ed3a1c92852744c20ec (patch) | |
tree | c79cdbf9080cfabe562636cc8277307cbfbce715 /mk | |
parent | 7ebb4d69857eaa70ea3d4a55ffeb85502805dc96 (diff) |
fix non verbose build
Diffstat (limited to 'mk')
-rw-r--r-- | mk/fetch.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/fetch.mk b/mk/fetch.mk index 606cda737..5fb13a29e 100644 --- a/mk/fetch.mk +++ b/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 \ |