diff options
author | Matwey V. Kornilov <[email protected]> | 2014-06-17 21:41:27 +0400 |
---|---|---|
committer | Matwey V. Kornilov <[email protected]> | 2014-07-02 18:10:46 +0400 |
commit | 0ce2323d8c68eb59e02aa46f920b5097886614f3 (patch) | |
tree | ee38693615b08137b362b0ffe451c1c08339ca47 /lib/otp_mibs | |
parent | c9e36ab16034bb7fe71f772df6bba22070976bbf (diff) | |
download | otp-0ce2323d8c68eb59e02aa46f920b5097886614f3.tar.gz otp-0ce2323d8c68eb59e02aa46f920b5097886614f3.tar.bz2 otp-0ce2323d8c68eb59e02aa46f920b5097886614f3.zip |
Fix a typo in clean section of otp_mibs makefile
There is no such variable $(TARGETS_FILES) (with S)
Diffstat (limited to 'lib/otp_mibs')
-rw-r--r-- | lib/otp_mibs/src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/otp_mibs/src/Makefile b/lib/otp_mibs/src/Makefile index 4f03d0228a..6096240bbd 100644 --- a/lib/otp_mibs/src/Makefile +++ b/lib/otp_mibs/src/Makefile @@ -72,7 +72,7 @@ ERL_COMPILE_FLAGS += -I$(INCLUDE) +warn_obsolete_guard debug opt: $(TARGETS) clean: - rm -f $(TARGETS_FILES) + rm -f $(TARGET_FILES) rm -f $(APP_TARGET) rm -f $(APPUP_TARGET) rm -f core |