aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavilla <davilla@4pi.com>2011-10-21 08:54:12 -0400
committerdavilla <davilla@4pi.com>2011-10-21 08:54:12 -0400
commit79cceb52edf0a090d0fd27cbe6b7927cb3dab73d (patch)
tree81f3cdd4672200bb62e0d0daf9625fe16d97f370
parentc80b011e52a996038ee8c4124871187d7c907fe7 (diff)
fixes 12113, += syntax in configure.in breaks configure script
-rwxr-xr-xconfigure.in14
1 files changed, 7 insertions, 7 deletions
diff --git a/configure.in b/configure.in
index 68adede50a..fca6f79f81 100755
--- a/configure.in
+++ b/configure.in
@@ -581,19 +581,19 @@ elif test "$use_arch" = "arm"; then
[AC_LANG_SOURCE([int foo;])],
[ CFLAGS="$SAVE_CFLAGS -Wno-psabi -Wa,-march=armv7a -mtune=cortex-a9 -mfpu=vfpv3-d16 -mthumb-interwork"
CXXFLAGS="$CXXFLAGS -Wno-psabi -Wa,-march=armv7a -mtune=cortex-a9 -mfpu=vfpv3-d16 -mthumb-interwork"
- FFMPEG_EXTRACFLAGS+=" -mtune=cortex-a9 -mfpu=vfpv3-d16"
+ FFMPEG_EXTRACFLAGS="$FFMPEG_EXTRACFLAGS -mtune=cortex-a9 -mfpu=vfpv3-d16"
use_cpu=cortex-a9],
[ CFLAGS="$SAVE_CFLAGS -Wa,-march=armv6 -mtune=cortex-a8 -mthumb-interwork"
CXXFLAGS="$CXXFLAGS -Wa,-march=armv6 -mtune=cortex-a8 -mthumb-interwork"
use_cpu=cortex-a8])
else
# Compile for ARMv7a architecture, CortexA8 cpu and check for enabled NEON coprocessor
- CFLAGS+=" -Wa,-march=armv7a -mcpu=cortex-a8"
- CXXFLAGS+=" -Wa,-march=armv7a -mcpu=cortex-a8"
+ CFLAGS="$CFLAGS -Wa,-march=armv7a -mcpu=cortex-a8"
+ CXXFLAGS="$CXXFLAGS -Wa,-march=armv7a -mcpu=cortex-a8"
if test "$use_neon" = "yes"; then
- CFLAGS+=" -mfpu=neon -mvectorize-with-neon-quad"
- CXXFLAGS+=" -mfpu=neon -mvectorize-with-neon-quad"
- FFMPEG_EXTRACFLAGS+=" -mfpu=neon"
+ CFLAGS="$CFLAGS -mfpu=neon -mvectorize-with-neon-quad"
+ CXXFLAGS="$CXXFLAGS -mfpu=neon -mvectorize-with-neon-quad"
+ FFMPEG_EXTRACFLAGS="$FFMPEG_EXTRACFLAGS -mfpu=neon"
fi
fi
fi
@@ -1888,7 +1888,7 @@ OUTPUT_FILES="Makefile \
xbmc/peripherals/devices/Makefile"
if test "$use_skin_touched" = "yes"; then
-OUTPUT_FILES+=" addons/skin.touched/media/Makefile"
+OUTPUT_FILES="$OUTPUT_FILES addons/skin.touched/media/Makefile"
fi
# Line below is used so we can use AM_INIT_AUTOMAKE. The corresponding