diff options
author | Lukas Larsson <[email protected]> | 2013-11-01 17:11:22 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2014-02-24 15:16:00 +0100 |
commit | 53863fdecda434076711708ba22ffe54a63c90c1 (patch) | |
tree | aca747fc285b5c913a4a4818ade4c08271d54c09 /erts | |
parent | 8103fed4090e9f1457fb1705e9a4df0821f5db9b (diff) | |
download | otp-53863fdecda434076711708ba22ffe54a63c90c1.tar.gz otp-53863fdecda434076711708ba22ffe54a63c90c1.tar.bz2 otp-53863fdecda434076711708ba22ffe54a63c90c1.zip |
ose: Fix clearmake compat issue
Diffstat (limited to 'erts')
-rw-r--r-- | erts/emulator/Makefile.in | 4 |
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) |