diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-01-13 06:56:08 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-01-13 06:56:08 -0800 |
commit | dbc666fb0822e3bc0fd97d90e068f104ea4f5781 (patch) | |
tree | 0272ebe5b066fe0a49b070dd9af6c5c13b37b81b /configure | |
parent | 6dfa7d64e118c4cb3295567107843776afbb552a (diff) | |
download | txr-dbc666fb0822e3bc0fd97d90e068f104ea4f5781.tar.gz txr-dbc666fb0822e3bc0fd97d90e068f104ea4f5781.tar.bz2 txr-dbc666fb0822e3bc0fd97d90e068f104ea4f5781.zip |
Don't clobber conf_ldflags.
* configure: the do-we-need-to-set-stack-size test
shouldn't overwrite conf_ldflags, but add to it.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2336,7 +2336,7 @@ fi printf "Do we need to set stack size ... " if uname -a | grep -q -E 'MINGW|CYGWIN' ; then - conf_ldflags='-Wl,--stack,16777216' + conf_ldflags="-Wl,--stack,16777216${conf_ldflags:+" $conf_ldflags"}" printf "yes\n" else printf "no\n" |