define is a reserved word in autotools so put some quotes inside it

This commit is contained in:
jasonmoxham 2010-11-08 07:26:58 +00:00
parent 96b477a9a2
commit 626a569151
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -31075,7 +31075,7 @@ case $host in
fi
done
# the file x86_64_divrem_euclidean_qr_1.as should detect the defined macro EXCLUDE_PREINV , but for some reason it doesnt, so we hack it
echo "%define EXCLUDE_PREINV 1" > mpn/x86_64_divrem_euclidean_qr_1.tmp
echo "%d""efine EXCLUDE_PREINV 1" > mpn/x86_64_divrem_euclidean_qr_1.tmp
cat mpn/x86_64_divrem_euclidean_qr_1.as >> mpn/x86_64_divrem_euclidean_qr_1.tmp
mv mpn/x86_64_divrem_euclidean_qr_1.tmp mpn/x86_64_divrem_euclidean_qr_1.as
;;

View File

@ -3199,7 +3199,7 @@ case $host in
fi
done
# the file x86_64_divrem_euclidean_qr_1.as should detect the defined macro EXCLUDE_PREINV , but for some reason it doesnt, so we hack it
echo "%define EXCLUDE_PREINV 1" > mpn/x86_64_divrem_euclidean_qr_1.tmp
echo "%d""efine EXCLUDE_PREINV 1" > mpn/x86_64_divrem_euclidean_qr_1.tmp
cat mpn/x86_64_divrem_euclidean_qr_1.as >> mpn/x86_64_divrem_euclidean_qr_1.tmp
mv mpn/x86_64_divrem_euclidean_qr_1.tmp mpn/x86_64_divrem_euclidean_qr_1.as
;;