osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/libgtpnl/+/38474?usp=email )
Change subject: build: fix bashims in configure.ac ......................................................................
build: fix bashims in configure.ac
$ foo=bar $ foo+=zzz dash: 2: foo+=zzz: not found
Fixes: 1.2.5-6-g0bd1e0d Change-Id: I2c0a62ab80f480502dd2a1bcf4aef71e70152ea6 --- M configure.ac 1 file changed, 3 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libgtpnl refs/changes/74/38474/1
diff --git a/configure.ac b/configure.ac index 6eabd32..24658a4 100644 --- a/configure.ac +++ b/configure.ac @@ -71,9 +71,9 @@ if test x"$werror" = x"yes" then WERROR_FLAGS="-Werror" - WERROR_FLAGS+=" -Werror=implicit-int -Werror=int-conversion -Werror=old-style-definition" - WERROR_FLAGS+=" -Wno-error=deprecated -Wno-error=deprecated-declarations" - WERROR_FLAGS+=" -Wno-error=cpp" # "#warning" + WERROR_FLAGS="$WERROR_FLAGS -Werror=implicit-int -Werror=int-conversion -Werror=old-style-definition" + WERROR_FLAGS="$WERROR_FLAGS -Wno-error=deprecated -Wno-error=deprecated-declarations" + WERROR_FLAGS="$WERROR_FLAGS -Wno-error=cpp" # "#warning" regular_CFLAGS="$WERROR_FLAGS" regular_CPPFLAGS="$WERROR_FLAGS" fi