aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog.txt3
-rwxr-xr-xconfigure1
2 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt
index ca04cc0..5e49851 100644
--- a/ChangeLog.txt
+++ b/ChangeLog.txt
@@ -1,3 +1,6 @@
+2016-10-13:
+ * (seebs) handle commas in CFLAGS
+
2016-09-30:
* (seebs) Fix rename at, matching fix from ee00f63d for rename. Bug
and fix provided by Anton Gerasimov <anton@advancedtelematic.com>.
diff --git a/configure b/configure
index e5ef9ce..170d264 100755
--- a/configure
+++ b/configure
@@ -207,6 +207,7 @@ if [ "${opt_cflags-UNSET}" = "UNSET" ]; then
else
arch_flags=$opt_cflags
fi
+arch_flags=$(echo "$arch_flags" | sed -e 's/,/\\,/g')
if $use_maybe_rpath && [ -n "$maybe_rpath" ]; then
echo >&2 "Adding default RPATH for sqlite."