aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2013-11-01 17:11:22 +0100
committerLukas Larsson <[email protected]>2014-02-24 15:16:00 +0100
commit53863fdecda434076711708ba22ffe54a63c90c1 (patch)
treeaca747fc285b5c913a4a4818ade4c08271d54c09
parent8103fed4090e9f1457fb1705e9a4df0821f5db9b (diff)
downloadotp-53863fdecda434076711708ba22ffe54a63c90c1.tar.gz
otp-53863fdecda434076711708ba22ffe54a63c90c1.tar.bz2
otp-53863fdecda434076711708ba22ffe54a63c90c1.zip
ose: Fix clearmake compat issue
-rw-r--r--erts/emulator/Makefile.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/erts/emulator/Makefile.in b/erts/emulator/Makefile.in
index 63deae76d5..3c874f6142 100644
--- a/erts/emulator/Makefile.in
+++ b/erts/emulator/Makefile.in
@@ -874,7 +874,9 @@ endif
ifeq ($(COMPILE_STATIC_LIBS),yes)
$(STATIC_NIF_LIBS) $(STATIC_DRIVER_LIBS):
- $(MAKE) BUILD_STATIC_LIBS=1 TYPE=$(TYPE) -C $(ERL_TOP)/lib/ static_lib
+ echo "=== Entering lib to make static libs"
+ (cd $(ERL_TOP)/lib/ && $(MAKE) BUILD_STATIC_LIBS=1 TYPE=$(TYPE) static_lib)
+ echo "=== Leaving lib after making static libs"
endif
ifeq ($(ERTS_ENABLE_KERNEL_POLL),yes)