From 72c76794c7fed9db4aa3ceb3c9032b436ba58a68 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Tue, 19 Jul 2005 02:40:06 +0000 Subject: Convert $(foreach...) to more portable suffix substitution rules --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 5df34ec..a240093 100644 --- a/Makefile.am +++ b/Makefile.am @@ -37,8 +37,8 @@ FONT_FILES = \ koi9x18b \ koi9x18 -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 -- cgit v1.2.3