From bcc838be83894cc1ec7c47c5d69bea7ae0b7551b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se> Date: Thu, 12 Feb 2004 15:44:28 +0100 Subject: [PATCH] (CPPFLAGS, LDFLAGS): No spaces after -I and -L, as 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 | 5 +++++ configure.ac | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6094f98a..11e89a21 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 78214d6d..e5ebd5dc 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, -- GitLab