From 7adecf3ea0909c171aabd89215a1b76026fa6999 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sun, 21 Jan 2007 11:09:46 +0000 Subject: =?UTF-8?q?Bug=20398238=20=E2=80=93=20pangorc=20file=20missing=20f?= =?UTF-8?q?rom=20tests=20directory?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2007-01-21 Behdad Esfahbod Bug 398238 – pangorc file missing from tests directory * pango-view/Makefile.am: * tests/Makefile.am: Don't use $<. Doesn't work with Sun's make. svn path=/trunk/; revision=2176 --- ChangeLog | 8 ++++++++ pango-view/Makefile.am | 2 +- tests/Makefile.am | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index d69cf8d1..284a59c2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2007-01-21 Behdad Esfahbod + + Bug 398238 – pangorc file missing from tests directory + + * pango-view/Makefile.am: + * tests/Makefile.am: + Don't use $<. Doesn't work with Sun's make. + 2007-01-18 Behdad Esfahbod * configure.in: Require automake 1.9. diff --git a/pango-view/Makefile.am b/pango-view/Makefile.am index 7d54f2bc..0d87dc09 100644 --- a/pango-view/Makefile.am +++ b/pango-view/Makefile.am @@ -185,4 +185,4 @@ endif BUILT_SOURCES = pangorc pangorc: $(srcdir)/../modules/pangorc - cp $< $@ + cp $(srcdir)/../modules/pangorc $@ diff --git a/tests/Makefile.am b/tests/Makefile.am index 33155e5c..549b89c4 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -79,6 +79,6 @@ all-unicode.txt: gen-all-unicode$(EXEEXT) ./gen-all-unicode > all-unicode.txt pangorc: $(srcdir)/../modules/pangorc - cp $< $@ + cp $(srcdir)/../modules/pangorc $@ $(noinst_PROGRAMS) $(check_PROGRAMS): pangorc -- cgit v1.2.1