diff options
-rw-r--r-- | addressbook/ChangeLog | 4 | ||||
-rw-r--r-- | addressbook/printing/Makefile.am | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index eab8b1c833..ac8a2d101f 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,7 @@ +2001-01-09 Miguel de Icaza <miguel@gnu.org> + + * printing/Makefile.am: Order LDADD flags correctly so it compiles. + 2001-01-09 Chris Toshok <toshok@helixcode.com> * gui/component/addressbook.c (addressbook_factory_new_control): diff --git a/addressbook/printing/Makefile.am b/addressbook/printing/Makefile.am index a28f8bf7c1..5da0e655ff 100644 --- a/addressbook/printing/Makefile.am +++ b/addressbook/printing/Makefile.am @@ -42,26 +42,26 @@ contact_print_test_SOURCES = \ test-print.c contact_print_test_LDADD = \ - $(EXTRA_GNOME_LIBS) \ - $(BONOBO_GNOME_LIBS) \ $(top_builddir)/addressbook/backend/ebook/libebook.la \ $(top_builddir)/e-util/libeutil.la \ $(top_builddir)/libversit/libversit.la \ $(top_builddir)/e-util/ename/libename.la \ libecontactprint.a \ + $(EXTRA_GNOME_LIBS) \ + $(BONOBO_GNOME_LIBS) \ $(GNOME_PRINT_LIBS) contact_print_style_editor_test_SOURCES = \ test-contact-print-style-editor.c contact_print_style_editor_test_LDADD = \ - $(EXTRA_GNOME_LIBS) \ - $(BONOBO_GNOME_LIBS) \ $(top_builddir)/addressbook/backend/ebook/libebook.la \ $(top_builddir)/e-util/libeutil.la \ $(top_builddir)/libversit/libversit.la \ $(top_builddir)/e-util/ename/libename.la \ libecontactprint.a \ + $(EXTRA_GNOME_LIBS) \ + $(BONOBO_GNOME_LIBS) \ $(GNOME_PRINT_LIBS) EXTRA_DIST = \ |