From 91507274762c06b14398e6f99b2cec11a188f207 Mon Sep 17 00:00:00 2001 From: Sheepson Apprentice Date: Thu, 29 Apr 2010 00:23:03 -0500 Subject: [PATCH] Fix echo bug again --- build-support/factor.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build-support/factor.sh b/build-support/factor.sh index d8b547d8d6..9da4ae295a 100755 --- a/build-support/factor.sh +++ b/build-support/factor.sh @@ -195,8 +195,9 @@ find_architecture() { } write_test_program() { - $ECHO "#include " > $C_WORD.c - $ECHO "int main(){printf(\"%ld\", (long)(8*sizeof(void*))); return 0; }" >> $C_WORD.c + #! Must be 'echo' + echo "#include " > $C_WORD.c + echo "int main(){printf(\"%ld\", (long)(8*sizeof(void*))); return 0; }" >> $C_WORD.c } c_find_word_size() {