From: Havoc Pennington Date: Wed, 13 Jun 2001 16:57:53 +0000 (+0000) Subject: link to ./libgobject-1.3.la since an installed libgobject was somehow X-Git-Tag: GLIB_1_3_6^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9ba71698c0ab0016f8ba4b2ed78cc480532a5aca;p=platform%2Fupstream%2Fglib.git link to ./libgobject-1.3.la since an installed libgobject was somehow 2001-06-13 Havoc Pennington * Makefile.am (progs_LDADD): link to ./libgobject-1.3.la since an installed libgobject was somehow being found; think it's a libtool bug, but this workaround should do for now. --- diff --git a/gobject/ChangeLog b/gobject/ChangeLog index 2eda694..9a107af 100644 --- a/gobject/ChangeLog +++ b/gobject/ChangeLog @@ -1,3 +1,9 @@ +2001-06-13 Havoc Pennington + + * Makefile.am (progs_LDADD): link to ./libgobject-1.3.la + since an installed libgobject was somehow being found; think + it's a libtool bug, but this workaround should do for now. + 2001-06-12 Havoc Pennington * Makefile.am (glib-mkenums): don't put $(srcdir)/glib-mkenums in diff --git a/gobject/Makefile.am b/gobject/Makefile.am index 873eeab..471b4ab 100644 --- a/gobject/Makefile.am +++ b/gobject/Makefile.am @@ -161,7 +161,7 @@ gobject_query_SOURCES = gobject-query.c glib_genmarshal_SOURCES = glib-genmarshal.c testgruntime_SOURCES = testgruntime.c # link programs against libgobject -progs_LDADD = libgobject-1.3.la $(libglib) +progs_LDADD = ./libgobject-1.3.la $(libglib) glib_genmarshal_LDADD = $(libglib) gobject_query_LDADD = $(progs_LDADD) testgruntime_LDADD = $(progs_LDADD)