From 1b0aba3b7c04906356a22f38f7dcbe3bb2ffc114 Mon Sep 17 00:00:00 2001 From: kballou Date: Fri, 16 Jun 2017 14:07:31 -0600 Subject: 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. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit v1.2.1