diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-07-19 02:40:05 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-07-19 02:40:05 +0000 |
commit | 58ddf8ef8b8004fbd824106b39444299465a3f43 (patch) | |
tree | 33eb59ca3a9ee7918e7365673b3967a92fad2f8b | |
parent | df6659d9f34ab617dcfa7972c42a43165b261479 (diff) |
Convert $(foreach...) to more portable suffix substitution rules
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index bb255f2..9deeabe 100644 --- a/Makefile.am +++ b/Makefile.am @@ -86,8 +86,8 @@ FONT_FILES = \ koi6x10 \ koinil2 -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 |