diff options
author | Rickard Green <[email protected]> | 2019-03-06 20:39:28 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2019-03-06 20:39:28 +0100 |
commit | fed10a7ed52488fc5de5873bf12443fc07097d89 (patch) | |
tree | 7a7529e9a5677e8b0477c7d7d94fb84e645a71e4 /lib/tools | |
parent | b32a929bbb287c318f44cb0ecf17716c480f11ee (diff) | |
parent | 3d5876a20675a6987288afde6f9259a0758cb152 (diff) | |
download | otp-fed10a7ed52488fc5de5873bf12443fc07097d89.tar.gz otp-fed10a7ed52488fc5de5873bf12443fc07097d89.tar.bz2 otp-fed10a7ed52488fc5de5873bf12443fc07097d89.zip |
Merge 'rickard/make-fixes-20/OTP-15657' into 'rickard/make-fixes-21/OTP-15657'
* rickard/make-fixes-20/OTP-15657:
Remove own configured RM make variable
Diffstat (limited to 'lib/tools')
-rw-r--r-- | lib/tools/c_src/Makefile.in | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/tools/c_src/Makefile.in b/lib/tools/c_src/Makefile.in index cfe91917f8..289322b6fa 100644 --- a/lib/tools/c_src/Makefile.in +++ b/lib/tools/c_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@ @@ -158,9 +157,9 @@ $(ERTS_LIB): docs: clean: - $(RM) -rf ../obj/* - $(RM) -rf ../bin/* - $(RM) -f ./*~ + $(RM) -r ../obj/* + $(RM) -r ../bin/* + $(RM) ./*~ .PHONY: all erts_lib docs clean |