diff options
author | Rickard Green <[email protected]> | 2019-03-07 14:44:02 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2019-03-07 14:44:02 +0100 |
commit | c05ebee4a70f81d17a369da62e3a9a9f5b52ef37 (patch) | |
tree | a260812477528fc532fa7d6713983b1ae59177bc /erts/lib_src | |
parent | 3d431b5f844bb37c5859f598eb05eee9eac4d769 (diff) | |
parent | 8575cb5eb636018a45c00be13855c32faeccdd13 (diff) | |
download | otp-c05ebee4a70f81d17a369da62e3a9a9f5b52ef37.tar.gz otp-c05ebee4a70f81d17a369da62e3a9a9f5b52ef37.tar.bz2 otp-c05ebee4a70f81d17a369da62e3a9a9f5b52ef37.zip |
Merge branch 'rickard/make-fixes-22/OTP-15657'
* rickard/make-fixes-22/OTP-15657:
Remove own configured RM make variable
Diffstat (limited to 'erts/lib_src')
-rw-r--r-- | erts/lib_src/Makefile.in | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/erts/lib_src/Makefile.in b/erts/lib_src/Makefile.in index 8e1f5b58c4..1da11c2d0a 100644 --- a/erts/lib_src/Makefile.in +++ b/erts/lib_src/Makefile.in @@ -29,7 +29,6 @@ CC=@CC@ LD=@LD@ AR=@AR@ RANLIB=@RANLIB@ -RM=@RM@ MKDIR=@MKDIR@ INSTALL=@INSTALL@ INSTALL_DIR=@INSTALL_DIR@ @@ -536,9 +535,9 @@ release_docs_spec: # .PHONY: clean clean: - $(RM) -rf ../lib/internal/$(TARGET)/* - $(RM) -rf ../lib/$(TARGET)/* - $(RM) -rf obj/$(TARGET)/* + $(RM) -r ../lib/internal/$(TARGET)/* + $(RM) -r ../lib/$(TARGET)/* + $(RM) -r obj/$(TARGET)/* # # Make dependencies |