From: Simon McVittie Date: Thu, 24 Feb 2011 15:20:18 +0000 (+0000) Subject: Don't compress spaces in CFLAGS and friends X-Git-Tag: dbus-1.4.8~14^2~2^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5cad0830698541bcea2fd6b200038ae96fde051d;p=platform%2Fupstream%2Fdbus.git 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. --- 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)