diff options
author | Akira TAGOH <akira@tagoh.org> | 2012-03-11 02:12:10 +0900 |
---|---|---|
committer | Akira TAGOH <akira@tagoh.org> | 2012-03-11 02:12:10 +0900 |
commit | 3b142c2aaeaed4d6d5b3353aa1007d6ac08dbbdb (patch) | |
tree | 685c7f61bc61e60b2da7a7b5fa1a05531ebc9d14 /Makefile.am | |
parent | 0fdfddf2ac93c1c0238b70a265998fd6b5ffe7af (diff) |
Get rid of $< from Makefile.am
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 3074001e..ed306503 100644 --- a/Makefile.am +++ b/Makefile.am @@ -89,7 +89,7 @@ fonts.conf: fonts.conf.in Makefile -e 's,@FC_FONTPATH\@,$(FC_FONTPATH),g' \ -e 's,@PACKAGE\@,$(PACKAGE),g' \ -e 's,@VERSION\@,$(VERSION),g' \ - $< > $@.tmp && \ + $(srcdir)/$@.in > $@.tmp && \ mv $@.tmp $@ install-data-local: fonts.conf |