From 5b5a61309a82625e2dbb28f9ae39f7448f2d1f2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se> Date: Wed, 5 Feb 2003 23:25:44 +0100 Subject: [PATCH] (LDFLAGS): --with-lib-path should add to LDFLAGS, not replace it. Rev: src/nettle/configure.ac:1.17 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ad506818..c235137d 100644 --- a/configure.ac +++ b/configure.ac @@ -27,7 +27,7 @@ AC_ARG_WITH(lib-path, [with_lib_path='']) if test x$with_lib_path != x ; then - 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