From 6a39ccbc4aaa7a7ccb6ff9d2a5df2c79a801abe1 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Thu, 24 Nov 2005 05:21:15 +0000 Subject: Bug #5122: Use $< instead of $^ to be portable to FreeBSD's make. --- ChangeLog | 5 +++++ Makefile.am | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 7c29eb5..cb3166f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-11-23 Eric Anholt + + * Makefile.am: + Use $< instead of $^ to be portable to FreeBSD's make. + 2005-11-15 Kevin E. Martin * Makefile.am: diff --git a/Makefile.am b/Makefile.am index a1f4361..0830e58 100644 --- a/Makefile.am +++ b/Makefile.am @@ -31,7 +31,7 @@ SUFFIXES = .bdf .pcf.gz .bdf.pcf.gz: @rm -f $@ - $(BDFTOPCF) -t $^ | gzip > $@ + $(BDFTOPCF) -t $< | gzip > $@ fontdir = @FONTDIR@ font_DATA = $(PCF_FILES) -- cgit v1.2.3