gnucash master: Remove stray quote that ate all the CFLAGS.

John Ralls jralls at code.gnucash.org
Sun May 31 20:45:41 EDT 2015


Updated	 via  https://github.com/Gnucash/gnucash/commit/fefec86f (commit)
	from  https://github.com/Gnucash/gnucash/commit/80034b39 (commit)



commit fefec86f644f9b8260836ad8541f2f083d5ca10b
Author: John Ralls <jralls at ceridwen.us>
Date:   Sun May 31 17:20:05 2015 -0700

    Remove stray quote that ate all the CFLAGS.

diff --git a/configure.ac b/configure.ac
index 47e5e80..7506029 100644
--- a/configure.ac
+++ b/configure.ac
@@ -371,7 +371,7 @@ AC_CHECK_HEADERS(dirent.h dlfcn.h dl.h utmp.h locale.h mcheck.h unistd.h wctype.
 
 GLIB_GSETTINGS
 dnl First remove any existing -std= setting from CFLAGS then add the one we want.
-CFLAGS=`echo "${CFLAGS} | sed -E -e "s,-std=[[a-z0-9]]+,,g"`
+CFLAGS=`echo ${CFLAGS} | sed -E -e "s,-std=[[a-z0-9]]+,,g"`
 CFLAGS="${CFLAGS} -std=${ac_cv_cstd}"
 
 # I'm sure we (used to?) require this in various places, so don't remove



Summary of changes:
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



More information about the gnucash-changes mailing list