aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-04-25 21:48:24 +0200
committerKim Alvefur <zash@zash.se>2017-04-25 21:48:24 +0200
commitbeb3a577e21bfc434a9d62d0d2c54dce003acdb6 (patch)
tree4871ff96ef343132381a57865466f929791e8da6
parent1dea93bfed984f7b3a7947571dfc6e1f6b348033 (diff)
downloadprosody-beb3a577e21bfc434a9d62d0d2c54dce003acdb6.tar.gz
prosody-beb3a577e21bfc434a9d62d0d2c54dce003acdb6.zip
configure: --add-ldflags to amend $LDFLAGS without overriding previous value #858
-rwxr-xr-xconfigure3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure
index a81c7eb9..63403738 100755
--- a/configure
+++ b/configure
@@ -303,6 +303,9 @@ do
--ldflags)
LDFLAGS="$value"
;;
+ --add-ldflags)
+ LDFLAGS="$LDFLAGS $value"
+ ;;
--c-compiler)
CC="$value"
;;