aboutsummaryrefslogtreecommitdiffstats
path: root/otp_build
diff options
context:
space:
mode:
authorMicael Karlberg <[email protected]>2011-09-23 16:15:29 +0200
committerMicael Karlberg <[email protected]>2011-09-23 16:15:29 +0200
commit3f5c0bf1f17d5c9d6f1b4dad5a9944e844c5393f (patch)
treeda1a5b930a9e7b8eb4db170b6ad14478a3ff891a /otp_build
parent524ad34276ef31fc5c306943539e3fe9bd19ad8c (diff)
parent1ead5e977d307ae391fdfd34e28fa5d587db2855 (diff)
downloadotp-3f5c0bf1f17d5c9d6f1b4dad5a9944e844c5393f.tar.gz
otp-3f5c0bf1f17d5c9d6f1b4dad5a9944e844c5393f.tar.bz2
otp-3f5c0bf1f17d5c9d6f1b4dad5a9944e844c5393f.zip
Merge branch 'major' of super:otp into bmk/inets/inets58_integration
Diffstat (limited to 'otp_build')
-rwxr-xr-xotp_build12
1 files changed, 6 insertions, 6 deletions
diff --git a/otp_build b/otp_build
index aed34b76a8..44bbab22b5 100755
--- a/otp_build
+++ b/otp_build
@@ -186,15 +186,15 @@ set_config_flags ()
if target_contains free_source; then
CONFIG_FLAGS="$CONFIG_FLAGS --host=$TARGET"
fi
- # Link SSL static for all binary distributions if not overridden
- # Even for win32 starting with R14B03
- XX=`echo $* | grep -v dynamic-ssl-lib`
- if [ "$*" = "$XX" ]; then
- CONFIG_FLAGS="--disable-dynamic-ssl-lib $CONFIG_FLAGS"
- fi
+ # Link SSL static for win32 binary distributions if not overridden
if target_contains win32; then
+ XX=`echo $* | grep -v dynamic-ssl-lib`
+ if [ "$*" = "$XX" ]; then
+ CONFIG_FLAGS="--disable-dynamic-ssl-lib $CONFIG_FLAGS"
+ fi
CONFIG_FLAGS="--build=$BUILDSYS build_alias=win32 --host=win32 --target=win32 $CONFIG_FLAGS"
fi
+
if [ "x$OVERRIDE_CONFIG_CACHE" = "x" ]; then
CONFIG_FLAGS="$CONFIG_FLAGS --cache-file=/dev/null"