From 22fe8c9f870f5b20f1cb9e740ff20a15331472f9 Mon Sep 17 00:00:00 2001 From: Rickard Green Date: Fri, 27 Aug 2010 13:28:43 +0200 Subject: 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 building on Windows. --- lib/ssl/Makefile | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) (limited to 'lib/ssl') diff --git a/lib/ssl/Makefile b/lib/ssl/Makefile index 5c6b7a2941..8c9d78d4bc 100644 --- a/lib/ssl/Makefile +++ b/lib/ssl/Makefile @@ -24,22 +24,11 @@ include $(ERL_TOP)/make/$(TARGET)/otp.mk # # Macros # -ifeq ($(findstring win32,$(TARGET)),win32) -ifeq ($(HOST_OS),) -HOST_OS := $(shell $(ERL_TOP)/erts/autoconf/config.guess) -endif -endif -ifeq ($(CROSS_COMPILING),yes) -SKIP_BUILDING_BINARIES := true -else -SKIP_BUILDING_BINARIES := false -endif - -ifeq ($(SKIP_BUILDING_BINARIES), true) SUB_DIRECTORIES = src c_src doc/src -else -SUB_DIRECTORIES = src c_src doc/src examples/certs examples/src + +ifeq ($(CROSS_COMPILING),no) +SUB_DIRECTORIES += examples/certs examples/src endif include vsn.mk -- cgit v1.2.3