From 5cad0830698541bcea2fd6b200038ae96fde051d Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Thu, 24 Feb 2011 15:20:18 +0000 Subject: [PATCH] Don't compress spaces in CFLAGS and friends Not all sed implementations understand "+" with its POSIX extended regular expression semantics, and compressing spaces is purely cosmetic anyway. Let's just drop this. --- configure.in | 5 ----- 1 file changed, 5 deletions(-) diff --git a/configure.in b/configure.in index 473a0f8..fb03ace 100644 --- a/configure.in +++ b/configure.in @@ -1295,11 +1295,6 @@ case $host_os in CFLAGS="$CFLAGS -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT" esac -# compress spaces in flags -CFLAGS=`echo "$CFLAGS" | sed -e 's/ +/ /g'` -CXXFLAGS=`echo "$CXXFLAGS" | sed -e 's/ +/ /g'` -CPPFLAGS=`echo "$CPPFLAGS" | sed -e 's/ +/ /g'` - ### Doxygen Documentation AC_PATH_PROG(DOXYGEN, doxygen, no) -- 2.7.4