]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
(CPPFLAGS, LDFLAGS): No spaces after -I and -L, as
authorNiels Möller <nisse@lysator.liu.se>
Thu, 12 Feb 2004 14:44:28 +0000 (15:44 +0100)
committerNiels Möller <nisse@lysator.liu.se>
Thu, 12 Feb 2004 14:44:28 +0000 (15:44 +0100)
some C compilers, in particular True64 cc, don't like that.

Rev: src/nettle/ChangeLog:1.246
Rev: src/nettle/configure.ac:1.33

ChangeLog
configure.ac

index 6094f98a4127fdf3477482005411fd91a03e2f0a..11e89a21fa07cf5f2839338293f122989cccadfe 100644 (file)
--- 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.
index 78214d6d3cf958b810cd71defc9bba9d65c24cb8..e5ebd5dc9a9569db365375ba2a43c03eef18a3b9 100644 (file)
@@ -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,