Skip to content
Snippets Groups Projects
Commit 5b5a6130 authored by Niels Möller's avatar Niels Möller
Browse files

(LDFLAGS): --with-lib-path should add to LDFLAGS,

not replace it.

Rev: src/nettle/configure.ac:1.17
parent b4b34ffc
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,7 @@ AC_ARG_WITH(lib-path, ...@@ -27,7 +27,7 @@ AC_ARG_WITH(lib-path,
[with_lib_path='']) [with_lib_path=''])
if test x$with_lib_path != x ; then 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 fi
AC_ARG_ENABLE(public-key, AC_ARG_ENABLE(public-key,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment