summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2009-06-03 08:16:17 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2009-06-03 08:16:17 +0000
commit8732195fd514e29db9140fcc38faabbc7e5bd4be (patch)
treefd97da7fc83a46166fa42fd9c7da58b4034b150c
parent3af6730c2f6491c1fb5191d3da853e1ba7c0d28e (diff)
downloadabuild-8732195fd514e29db9140fcc38faabbc7e5bd4be.tar.bz2
abuild-8732195fd514e29db9140fcc38faabbc7e5bd4be.tar.xz
alpine.mk: wait with calculating dir size til the dir is filled up
-rwxr-xr-xalpine.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/alpine.mk b/alpine.mk
index 6f65bc8..13ca9e5 100755
--- a/alpine.mk
+++ b/alpine.mk
@@ -229,7 +229,7 @@ $(ISO_SHA1): $(ISO)
# USB image
#
USBIMG := $(ALPINE_NAME)-$(ALPINE_RELEASE)-$(ALPINE_ARCH).img
-USBIMG_SIZE := $(shell echo $$(( `du -s $(ISO_DIR) | awk '{print $$1}'` + 8192 )) )
+USBIMG_SIZE = $(shell echo $$(( `du -s $(ISO_DIR) | awk '{print $$1}'` + 8192 )) )
MBRPATH := /usr/share/syslinux/mbr.bin
# the offset where the frist partition is found
USBIMG_OFFSET := 16384