summaryrefslogtreecommitdiff
path: root/rules/atinject-javax.inject
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-06-06 18:43:10 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-06-06 18:43:10 -0400
commitdecdab721f2f633c73b7398e4bc64da4130eea90 (patch)
treee2f3ef5cb32aa58359911d5dddce7ea0b0fd14a8 /rules/atinject-javax.inject
parentfd28005d9f3f49e2e5dfee2e13aa77eeca961eac (diff)
rule/*/Makefile: pull `test -e` into $(EXISTS)
Diffstat (limited to 'rules/atinject-javax.inject')
-rw-r--r--rules/atinject-javax.inject/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/rules/atinject-javax.inject/Makefile b/rules/atinject-javax.inject/Makefile
index 8abe51f..5c654d2 100644
--- a/rules/atinject-javax.inject/Makefile
+++ b/rules/atinject-javax.inject/Makefile
@@ -1,6 +1,7 @@
DESTDIR ?=
MAVEN_LOCAL_REPO ?= ~/.m2
+EXISTS = test -e
FIND = find
INSTALL = install
RM = rm -f
@@ -28,7 +29,7 @@ $(install-dir)/$(artifactId)-$(version).pom: build/maven/pom.xml
$(INSTALL) -Dm644 $< $@
$(addprefix build/maven/,$(notdir $(filter-out %.pom,$(install-targets)) pom.xml)): build/maven/%: build
- test -e $@
+ $(EXISTS) $@
$(TOUCH) $@
clean: PHONY