Fix echo bug again

db4
Sheepson Apprentice 2010-04-29 00:23:03 -05:00
parent 0aff35bfee
commit 9150727476
1 changed files with 3 additions and 2 deletions

View File

@ -195,8 +195,9 @@ find_architecture() {
} }
write_test_program() { write_test_program() {
$ECHO "#include <stdio.h>" > $C_WORD.c #! Must be 'echo'
$ECHO "int main(){printf(\"%ld\", (long)(8*sizeof(void*))); return 0; }" >> $C_WORD.c echo "#include <stdio.h>" > $C_WORD.c
echo "int main(){printf(\"%ld\", (long)(8*sizeof(void*))); return 0; }" >> $C_WORD.c
} }
c_find_word_size() { c_find_word_size() {