Neels Hofmeyr has submitted this change and it was merged.
Change subject: configure: properly quote CFLAGS in lc15 check
......................................................................
configure: properly quote CFLAGS in lc15 check
Change-Id: I7bb7a7d7b5b9340cb41c95f848774ee378c59212
---
M configure.ac
1 file changed, 2 insertions(+), 2 deletions(-)
Approvals:
Pau Espin Pedrol: Looks good to me, but someone else must approve
Neels Hofmeyr: Verified
Harald Welte: Looks good to me, approved
diff --git a/configure.ac b/configure.ac
index 5135c19..6365fcb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -130,12 +130,12 @@
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],
--
To view, visit https://gerrit.osmocom.org/7583
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I7bb7a7d7b5b9340cb41c95f848774ee378c59212
Gerrit-PatchSet: 2
Gerrit-Project: osmo-pcu
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr <[email protected]>
Gerrit-Reviewer: Harald Welte <[email protected]>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: Neels Hofmeyr <[email protected]>
Gerrit-Reviewer: Pau Espin Pedrol <[email protected]>