summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <Alan.Coopersmith@sun.com>2005-07-19 02:40:06 +0000
committerAlan Coopersmith <Alan.Coopersmith@sun.com>2005-07-19 02:40:06 +0000
commitb44cf9decf865974b56d28c5ca0e3393384c2e4c (patch)
tree8374450bbb351f052e39f97592bd139a2c70bfc9
parent1a18e57951271a7744b5596fa9b5021e2dbdca24 (diff)
Convert $(foreach...) to more portable suffix substitution rules
-rw-r--r--Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index 5b73572..5071bdf 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -23,8 +23,8 @@ FONT_DIR = misc
FONT_FILES = \
micro
-BDF_FILES = $(foreach X, $(FONT_FILES), $(X).bdf)
-PCF_FILES = $(foreach X, $(FONT_FILES), $(X).pcf.gz)
+BDF_FILES = $(FONT_FILES:%=%.bdf)
+PCF_FILES = $(FONT_FILES:%=%.pcf.gz)
SUFFIXES = .bdf .pcf.gz