aboutsummaryrefslogtreecommitdiffstats
path: root/configure
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
commit34a3e7327ee7e7d419e39363213afb338db2a3a3 (patch)
tree4871ff96ef343132381a57865466f929791e8da6 /configure
parent7dd7ec85411a92820ba524016be915c5db6dbb6c (diff)
downloadprosody-34a3e7327ee7e7d419e39363213afb338db2a3a3.tar.gz
prosody-34a3e7327ee7e7d419e39363213afb338db2a3a3.zip
configure: --add-ldflags to amend $LDFLAGS without overriding previous value #858
Diffstat (limited to 'configure')
-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"
;;