diff options
author | Mukund Sivaraman <muks@banu.com> | 2012-01-23 16:25:24 +0530 |
---|---|---|
committer | Mukund Sivaraman <muks@banu.com> | 2012-01-23 16:25:24 +0530 |
commit | 2e4ea496b3a38e73069f0527da31c41064f703a1 (patch) | |
tree | 33dd792b512f00de12df0014e8f817edda68addd /configure.ac | |
parent | e5fd1fd55648ce2145ce11a7525be595b918134d (diff) | |
download | tinyproxy-2e4ea496b3a38e73069f0527da31c41064f703a1.tar.gz tinyproxy-2e4ea496b3a38e73069f0527da31c41064f703a1.zip |
build: Prepend to LDFLAGS instead of replacing its contents
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 95aec0b..ecbcba0 100644 --- a/configure.ac +++ b/configure.ac @@ -222,7 +222,7 @@ if test x"$debug_enabled" != x"yes" ; then CFLAGS="-DNDEBUG $CFLAGS" fi -LDFLAGS="-Wl,-z,defs" +LDFLAGS="-Wl,-z,defs $LDFLAGS" dnl dnl Make sure we can actually handle the "--with-*" and "--enable-*" stuff. |