diff options
author | Mans Rullgard <mans@mansr.com> | 2013-03-26 20:53:16 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-03-26 20:53:16 +0000 |
commit | 28831a9a671b109e49d0a4ddce00a08d734bfc97 (patch) | |
tree | 4dc69f2c888087160ddc877fb4ab17507c209370 /ports/sysdeps/arm | |
parent | 5739f705eed5cf58e7b439e5983542e06d7fc2da (diff) | |
download | glibc-28831a9a671b109e49d0a4ddce00a08d734bfc97.tar glibc-28831a9a671b109e49d0a4ddce00a08d734bfc97.tar.gz glibc-28831a9a671b109e49d0a4ddce00a08d734bfc97.tar.bz2 glibc-28831a9a671b109e49d0a4ddce00a08d734bfc97.zip |
ARM: fix preconfigure.
Diffstat (limited to 'ports/sysdeps/arm')
-rw-r--r-- | ports/sysdeps/arm/preconfigure | 2 | ||||
-rw-r--r-- | ports/sysdeps/arm/preconfigure.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ports/sysdeps/arm/preconfigure b/ports/sysdeps/arm/preconfigure index 7ba17492ee..908cd34303 100644 --- a/ports/sysdeps/arm/preconfigure +++ b/ports/sysdeps/arm/preconfigure @@ -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" diff --git a/ports/sysdeps/arm/preconfigure.in b/ports/sysdeps/arm/preconfigure.in index 99f21282fa..f8357955eb 100644 --- a/ports/sysdeps/arm/preconfigure.in +++ b/ports/sysdeps/arm/preconfigure.in @@ -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" |