diff options
| -rw-r--r-- | GNUmakefile | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/GNUmakefile b/GNUmakefile index 37b617c..300f185 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -35,7 +35,7 @@ gendeps = $(incs) $(wildcard $(dir $(patsubst out/%.html,src/%.gsp,$1))*.gsp)  .SECONDEXPANSION:  out/%.html: src/%.gsp $$(call gendeps,$$@)  	@PATH="$$PATH:./include" \ -	m4 -P $(foreach dir,$(^D),-I$(dir)) include/lib.m4 $< | gsp >$@ +	m4 -P $(foreach d,$(^D),-I$d) include/lib.m4 $< | gsp >$@  	@printf 'GSP\t%s\n' "$@"  check: |