diff --git a/ChangeLog b/ChangeLog
index 6094f98a4127fdf3477482005411fd91a03e2f0a..11e89a21fa07cf5f2839338293f122989cccadfe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-02-12  Niels Möller  <niels@s3.kth.se>
+
+	* configure.ac (CPPFLAGS, LDFLAGS): No spaces after -I and -L, as
+	some C compilers, in particular True64 cc, don't like that.
+
 2004-02-08  Niels Möller  <nisse@lysator.liu.se>
 
 	* configure.ac: Bumped version number to 1.10.
diff --git a/configure.ac b/configure.ac
index 78214d6d3cf958b810cd71defc9bba9d65c24cb8..e5ebd5dc9a9569db365375ba2a43c03eef18a3b9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -19,7 +19,7 @@ AC_ARG_WITH(include-path,
   [with_include_path=''])
 
 if test x$with_include_path != x ; then
-  CPPFLAGS="$CPPFLAGS -I `echo $with_include_path | sed 's/:/ -I /g'`"
+  CPPFLAGS="$CPPFLAGS -I`echo $with_include_path | sed 's/:/ -I/g'`"
 fi
 
 AC_ARG_WITH(lib-path,
@@ -27,7 +27,7 @@ AC_ARG_WITH(lib-path,
   [with_lib_path=''])
 
 if test x$with_lib_path != x ; then
-  LDFLAGS="$LDFLAGS -L `echo $with_lib_path | sed 's/:/ -L /g'`"
+  LDFLAGS="$LDFLAGS -L`echo $with_lib_path | sed 's/:/ -L/g'`"
 fi
 
 AC_ARG_ENABLE(public-key,