ARM: fix preconfigure.

This commit is contained in:
Mans Rullgard 2013-03-26 20:53:16 +00:00 committed by Joseph Myers
parent 5739f705ee
commit 28831a9a67
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2013-03-26 Mans Rullgard <mans@mansr.com>
* sysdeps/arm/preconfigure.in: Use "test" instead of [ ].
* sysdeps/arm/preconfigure: Regenerated.
2013-03-20 Joseph Myers <joseph@codesourcery.com>
* sysdeps/arm/configure.in (default-abi): Set using

View File

@ -10,7 +10,7 @@ arm*)
# avoid this, add -fno-unwind-tables here and remove it in
# sysdeps/unix/sysv/linux/arm/configure.in after those tests have
# been run.
if "${CFLAGS+set}" != "set" ; then
if test "${CFLAGS+set}" != "set"; then
CFLAGS="-g -O2"
fi
CFLAGS="$CFLAGS -fno-unwind-tables"

View File

@ -10,7 +10,7 @@ arm*)
# avoid this, add -fno-unwind-tables here and remove it in
# sysdeps/unix/sysv/linux/arm/configure.in after those tests have
# been run.
if [ "${CFLAGS+set}" != "set" ]; then
if test "${CFLAGS+set}" != "set"; then
CFLAGS="-g -O2"
fi
CFLAGS="$CFLAGS -fno-unwind-tables"