aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2017-06-16 14:07:31 -0600
committerkballou <kballou@devnulllabs.io>2017-06-16 14:10:09 -0600
commit1b0aba3b7c04906356a22f38f7dcbe3bb2ffc114 (patch)
tree3574abd63dc0e292901a199a5d2df9e670f716fc
parent5b96bc273adac87b46ca54c04f085f051b362e1e (diff)
downloaddocker-erlang-1b0aba3b7c04906356a22f38f7dcbe3bb2ffc114.tar.gz
docker-erlang-1b0aba3b7c04906356a22f38f7dcbe3bb2ffc114.tar.xz
Fix use of incorrect special variable
Although it wasn't _really_ an issue since the `template/generate.sh` script doesn't use anything past the 2nd argument, the Makefile should specify the correct (special) variable.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b9fa6ac..c307f2d 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,7 @@ DOCKERFILES:= \
all: ${DOCKERFILES}
$(DOCKERFILES): template/Dockerfile 18/options 19/options
- bash template/generate.sh $(shell echo $@ | cut -d '/' -f1)/options $^ > $@
+ bash template/generate.sh $(shell echo $@ | cut -d '/' -f1)/options $< > $@
.PHONY: clean
clean: