diff options
author | Matthieu Herrb <matthieu.herrb@laas.fr> | 2013-06-08 18:07:20 +0200 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2013-06-08 10:21:54 -0700 |
commit | 889f1189469e139473d0a88742ddfbbcaf485bef (patch) | |
tree | 0ce78dfadaa3299bad7661ef60a09cdec16430ab | |
parent | 2acfac5f8e097ee2ae225d986f981b55d65dd152 (diff) |
configure.ac: Don't use '+=' since it's not POSIX
Reviewed-by: Matt Turner <mattst88@gmail.com>
Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 221179ff..b36298a6 100644 --- a/configure.ac +++ b/configure.ac @@ -616,7 +616,7 @@ AC_ARG_ENABLE(arm-iwmmxt2, if test "x$IWMMXT_CFLAGS" = "x" ; then IWMMXT_CFLAGS="-flax-vector-conversions -Winline -march=iwmmxt" if test $enable_iwmmxt2 != no ; then - IWMMXT_CFLAGS+="2" + IWMMXT_CFLAGS="${IWMMXT_CFLAGS}2" fi fi |