]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
(LDFLAGS): --with-lib-path should add to LDFLAGS,
authorNiels Möller <nisse@lysator.liu.se>
Wed, 5 Feb 2003 22:25:44 +0000 (23:25 +0100)
committerNiels Möller <nisse@lysator.liu.se>
Wed, 5 Feb 2003 22:25:44 +0000 (23:25 +0100)
not replace it.

Rev: src/nettle/configure.ac:1.17

configure.ac

index ad506818f2572db75b7cd96bc2b06586b49d7094..c235137df1926a91d8a8127c1a2cadfb4c421938 100644 (file)
@@ -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,