diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-03-04 19:45:16 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-03-04 19:45:16 -0500 |
commit | a29641a56031c374677f20c7942a6acc40d446da (patch) | |
tree | 5c6fbb00124b8c2e7c8984ab1cc5bb2e62da4f16 | |
parent | 30205092cec6c426bb580fa44d6c2ad52bce2848 (diff) |
jsr305: use $@ instead of hardcoding
-rw-r--r-- | rules/jsr305/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/jsr305/Makefile b/rules/jsr305/Makefile index 70c4a51..ea388f3 100644 --- a/rules/jsr305/Makefile +++ b/rules/jsr305/Makefile @@ -12,7 +12,7 @@ TOUCH = touch all: PHONY build build: $(shell $(FIND) src) - $(ANT) jars || { $(RM) -r build; $(FAIL); } + $(ANT) jars || { $(RM) -r $@; $(FAIL); } $(TOUCH) $@ install-dir = $(DESTDIR)$(JAR_DIR)/jsr305 |