diff options
author | Eric Anholt <anholt@freebsd.org> | 2005-11-24 05:21:16 +0000 |
---|---|---|
committer | Eric Anholt <anholt@freebsd.org> | 2005-11-24 05:21:16 +0000 |
commit | 89c7c56c91d8a3f9a824be89bb4b9d04d9253932 (patch) | |
tree | 73c531975bea7b1bca2808e87d55496752c06d73 | |
parent | 9a21681abd4db294f0c20fe912c1ee5abbc69be7 (diff) |
Bug #5122: Use $< instead of $^ to be portable to FreeBSD's make.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.am | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2005-11-23 Eric Anholt <anholt@FreeBSD.org> + + * Makefile.am: + Use $< instead of $^ to be portable to FreeBSD's make. + 2005-11-15 Kevin E. Martin <kem-at-freedesktop-dot-org> * Makefile.am: diff --git a/Makefile.am b/Makefile.am index ee2d0c2..53e91e8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -32,7 +32,7 @@ SUFFIXES = .bdf .pcf.gz .bdf.pcf.gz: @rm -f $@ - $(BDFTOPCF) -t $^ | gzip > $@ + $(BDFTOPCF) -t $< | gzip > $@ fontdir = @FONTDIR@ font_DATA = $(PCF_FILES) |