aboutsummaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2005-03-16 17:13:08 +0000
committerVincent Richard <[email protected]>2005-03-16 17:13:08 +0000
commit2ca56a209f9968e4546ab3c7038a3dec03709cfa (patch)
tree215eef7c8a750988db9663de65f8b41ae0c6463d /SConstruct
parentSupport for In-Reply-To header field (type MessageId). (diff)
downloadvmime-2ca56a209f9968e4546ab3c7038a3dec03709cfa.tar.gz
vmime-2ca56a209f9968e4546ab3c7038a3dec03709cfa.zip
Fixed compilation problems on Solaris 9.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct3
1 files changed, 2 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index a50d1c0b..850d4243 100644
--- a/SConstruct
+++ b/SConstruct
@@ -1463,7 +1463,8 @@ fi
configure_in.write('AC_TRY_COMPILE(,,echo yes,echo no; EXTRA_CFLAGS="$OLD_EXTRA_CFLAGS")\n\n')
configure_in.write("""
-EXTRA_CFLAGS=`echo $EXTRA_CFLAGS | sed -e 's| |\\n|g' | sort | uniq | tr '\\n' ' '`
+#EXTRA_CFLAGS=`echo $EXTRA_CFLAGS | sed -e 's| |\\n|g' | sort | uniq | tr '\\n' ' '`
+EXTRA_CFLAGS=`echo $EXTRA_CFLAGS | tr '\\n' ' ' | sort | uniq | tr '\\n' ' '`
EXTRA_LIBS=`echo $EXTRA_LIBS | sed -e 's|^ ||g' | sed -e 's| | |g'`
AC_SUBST(CFLAGS)