aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2018-03-29 17:04:43 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2018-03-29 22:10:57 +0000
commit9f06cbff6dff8460d0d66ebf475eb5294fbefebb (patch)
tree6a70031d32b96dc4d9989de7c17e9c3b25ffebd4
parenta661bcd086064c2d7ba0eee54c8a708a7bac8ba1 (diff)
configure: properly quote CFLAGS in lc15 check
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 5135c197..6365fcbb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -130,12 +130,12 @@ AC_SUBST([LITECELL15_CFLAGS], $litecell15_cflags)
AC_MSG_RESULT([$enable_lc15bts_phy])
AM_CONDITIONAL(ENABLE_LC15BTS_PHY, test "x$enable_lc15bts_phy" = "xyes")
if test "$enable_litecell15" = "yes"; then
- oldCPPFLAGS=$CPPFLAGS
+ oldCPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $LITECELL15_CFLAGS -I$srcdir/include $LIBOSMOCORE_CFLAGS"
AC_CHECK_HEADER([nrw/litecell15/litecell15.h],[],
[AC_MSG_ERROR([nrw/litecell15/litecell15.h can not be found using $litecell15_cflags])],
[#include <nrw/litecell15/litecell15.h>])
- CPPFLAGS=$oldCPPFLAGS
+ CPPFLAGS="$oldCPPFLAGS"
fi
AC_ARG_ENABLE([vty_tests],