From 3921834b96281732bca7618325e747a7bfd8d80f Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Mon, 21 Dec 2009 02:43:10 +0100 Subject: [PATCH] Build adds not-yet-built libgtk-x11-2.0.la into the linker flags MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Commit 9e7c91bf83fd21a559b5658d02a1466deb4de919 added a bit too many LDFLAGS to the build of gtk-update-icon-cache, revert it to only use the required ones. BugĀ 605036 --- gtk/Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gtk/Makefile.am b/gtk/Makefile.am index cee2ab186..8ec9abf3a 100644 --- a/gtk/Makefile.am +++ b/gtk/Makefile.am @@ -1047,7 +1047,10 @@ gtk_query_immodules_2_0_LDADD = $(LDADDS) gtk_query_immodules_2_0_SOURCES = queryimmodules.c -gtk_update_icon_cache_LDADD = $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la $(LDADDS) +gtk_update_icon_cache_LDADD = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ + $(GDK_PIXBUF_DEP_LIBS) + gtk_update_icon_cache_SOURCES = \ updateiconcache.c