Browse Source

- pass a LC_ALL to du to avoid i18n trouble when calculating the size.
Fixes #1044

Bernhard Reutner-Fischer 18 years ago
parent
commit
cbb32d16c4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      target/ext2/ext2root.mk

+ 1 - 1
target/ext2/ext2root.mk

@@ -86,7 +86,7 @@ $(EXT2_BASE): host-fakeroot makedevs genext2fs
 		>> $(STAGING_DIR)/_fakeroot.$(notdir $(EXT2_TARGET))
 	# Use fakeroot so genext2fs believes the previous fakery
 ifeq ($(strip $(BR2_TARGET_ROOTFS_EXT2_BLOCKS)),0)
-	GENEXT2_REALSIZE=`LANG=C du -l -s -c -k $(TARGET_DIR) | grep total | sed -e "s/total//"`; \
+	GENEXT2_REALSIZE=`LANG=C LC_ALL=POSIX du -l -s -c -k $(TARGET_DIR) | grep total | sed -e "s/total//"`; \
 	GENEXT2_ADDTOROOTSIZE=`if [ $$GENEXT2_REALSIZE -ge 20000 ] ; then echo 16384; else echo 2400; fi`; \
 	GENEXT2_SIZE=`expr $$GENEXT2_REALSIZE + $$GENEXT2_ADDTOROOTSIZE`; \
 	GENEXT2_ADDTOINODESIZE=`find $(TARGET_DIR) | wc -l`; \