summaryrefslogtreecommitdiff
path: root/build-aux/Makefile.once.head
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-09-06 16:06:45 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-09-06 16:06:45 -0400
commit5a5cbe6bdefe44a36ef0fed9bee567530363bfbe (patch)
tree792bb4be057e7a6ba5177bc460f91d9309465d29 /build-aux/Makefile.once.head
parent3fbf31965b37b0a5c91b0121aec12af066d7726c (diff)
build-aux: quote.shell-each: fix
Diffstat (limited to 'build-aux/Makefile.once.head')
-rw-r--r--build-aux/Makefile.once.head/00-quote.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/Makefile.once.head/00-quote.mk b/build-aux/Makefile.once.head/00-quote.mk
index 17f63077e6..9fce401b94 100644
--- a/build-aux/Makefile.once.head/00-quote.mk
+++ b/build-aux/Makefile.once.head/00-quote.mk
@@ -22,7 +22,7 @@ quote.pattern = $(call _quote.backslash, \ % ,$1)
quote.ere = $(call _quote.backslash, \ ^ . [ $$ ( ) | * + ? { ,$1)
quote.bre = $(call _quote.backslash, \ ^ . [ $$ * ,$1)
-quote.shell-each = $(foreach _quote.tmp,$1,$(call quote.shell,$(_mod.tmp)))
+quote.shell-each = $(foreach _quote.tmp,$1,$(call quote.shell,$(_quote.tmp)))
# I put this as the last line in the file because it confuses Emacs syntax
# highlighting and makes the remainder of the file difficult to edit.