diff options
author | Rickard Green <[email protected]> | 2019-03-06 20:40:54 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2019-03-06 20:40:54 +0100 |
commit | 8575cb5eb636018a45c00be13855c32faeccdd13 (patch) | |
tree | a84b803710386bbb4b2a25a250a05093278d0f70 /erts/lib_src | |
parent | 05c5720845e0e2142a3b1c6e4b1e9f1e22c19a5c (diff) | |
parent | fed10a7ed52488fc5de5873bf12443fc07097d89 (diff) | |
download | otp-8575cb5eb636018a45c00be13855c32faeccdd13.tar.gz otp-8575cb5eb636018a45c00be13855c32faeccdd13.tar.bz2 otp-8575cb5eb636018a45c00be13855c32faeccdd13.zip |
Merge 'rickard/make-fixes-21/OTP-15657' into 'rickard/make-fixes-22/OTP-15657'
* rickard/make-fixes-21/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 |