diff options
author | Rickard Green <[email protected]> | 2010-08-26 14:55:34 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2010-08-27 14:29:24 +0200 |
commit | af6295211178e1237df6b9b05b5cfe275238e8dc (patch) | |
tree | da5caf385a3ca913b8952309965ddd1dd25ef574 /configure.in | |
parent | 1b4a6172d8d2df4362d6d084daef02804e10ebb6 (diff) | |
download | otp-af6295211178e1237df6b9b05b5cfe275238e8dc.tar.gz otp-af6295211178e1237df6b9b05b5cfe275238e8dc.tar.bz2 otp-af6295211178e1237df6b9b05b5cfe275238e8dc.zip |
Fix SSL build failure when building in minimal source tree
Building in a source tree without prebuilt platform independent
build results failed on the SSL examples when cross building.
This has been solved by not building the SSL examples during a
cross build.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index f9fa34cedf..d0879c6291 100644 --- a/configure.in +++ b/configure.in @@ -97,7 +97,7 @@ fi TARGET=$host AC_SUBST(TARGET) -if test X$cross_compiling = Xyes; then +if test "$cross_compiling" = "yes"; then CROSS_COMPILING=yes else CROSS_COMPILING=no |