diff options
author | Erlang/OTP <[email protected]> | 2009-12-15 10:21:42 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2009-12-15 10:21:42 +0000 |
commit | de4639e46760493bad61ae48a5d894001216720e (patch) | |
tree | 21bb2a364acb6fe11f9aedb13b2874990d51124f | |
parent | f48453e7af9fdc5dc71824b69cfe979b173b9354 (diff) | |
parent | 2468a4795b6a0b0c99b70ffe623629a5ca0199ff (diff) | |
download | otp-de4639e46760493bad61ae48a5d894001216720e.tar.gz otp-de4639e46760493bad61ae48a5d894001216720e.tar.bz2 otp-de4639e46760493bad61ae48a5d894001216720e.zip |
Merge branch 'sc/darwin_build_rm_dSYMN' into ccase/r13b04_dev
* sc/darwin_build_rm_dSYMN:
Fix 'make clean' in erts with debug builds under Darwin
-rw-r--r-- | erts/emulator/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/Makefile.in b/erts/emulator/Makefile.in index a2061134a5..903e1e96ba 100644 --- a/erts/emulator/Makefile.in +++ b/erts/emulator/Makefile.in @@ -402,7 +402,7 @@ endif $(RM) -f $(TARGET)/*/*/*.c $(TARGET)/*/*/*.h $(TARGET)/*/*/*.S $(RM) -f $(ERL_TOP)/erts/emulator/obj/$(TARGET)/*/*/*.o $(RM) -f $(BINDIR)/beam $(BINDIR)/beam.* - $(RM) -f $(BINDIR)/child_setup $(BINDIR)/child_setup.* + $(RM) -rf $(BINDIR)/child_setup $(BINDIR)/child_setup.* $(RM) -f $(BINDIR)/hipe_mkliterals $(BINDIR)/hipe_mkliterals.* @set -e ; cd zlib && $(MAKE) clean @set -e ; cd pcre && $(MAKE) clean |