diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | pango-view/Makefile.am | 2 | ||||
-rw-r--r-- | tests/Makefile.am | 2 |
3 files changed, 10 insertions, 2 deletions
@@ -1,3 +1,11 @@ +2007-01-21 Behdad Esfahbod <behdad@gnome.org> + + 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 <behdad@gnome.org> * 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 |