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 /make | |
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 'make')
-rw-r--r-- | make/otp.mk.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/make/otp.mk.in b/make/otp.mk.in index 9f0486a609..6ae7c5b456 100644 --- a/make/otp.mk.in +++ b/make/otp.mk.in @@ -25,6 +25,11 @@ .3 .1 .fig .dvi .tex .class .java .pdf .fo .psframe .pscrop .el .elc # ---------------------------------------------------- +# Cross Compiling +# ---------------------------------------------------- +CROSS_COMPILING = @CROSS_COMPILING@ + +# ---------------------------------------------------- # Common macros # ---------------------------------------------------- DEFAULT_TARGETS = opt debug release release_docs clean docs |