Fix echo bug again
parent
0aff35bfee
commit
9150727476
|
@ -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() {
|
||||||
|
|
Loading…
Reference in New Issue