# HG changeset patch # User Gary Kramlich # Date 1157340221 0 # Node ID 9c6533500fff32d83b7c1d3b28b44f02cfe60627 # Parent 72eae9311ed58799595da3d056e0d697141e485d [gaim-migrate @ 17149] Never EVER use -L and -l for a library in your own build. committer: Tailor Script diff -r 72eae9311ed5 -r 9c6533500fff console/Makefile.am --- a/console/Makefile.am Mon Sep 04 01:06:28 2006 +0000 +++ b/console/Makefile.am Mon Sep 04 03:23:41 2006 +0000 @@ -45,8 +45,8 @@ $(GLIB_LIBS) \ $(LIBXML_LIBS) \ $(GNT_LIBS) \ - -L./libgnt/ -lgnt \ - -L$(top_builddir)/libgaim -lgaim + ./libgnt/libgnt.la \ + $(top_builddir)/libgaim/libgaim.la AM_CPPFLAGS = \ -DSTANDALONE \ diff -r 72eae9311ed5 -r 9c6533500fff gtk/Makefile.am --- a/gtk/Makefile.am Mon Sep 04 01:06:28 2006 +0000 +++ b/gtk/Makefile.am Mon Sep 04 03:23:41 2006 +0000 @@ -166,7 +166,7 @@ $(LIBXML_LIBS) \ $(GTK_LIBS) \ $(CAP_LIBS) \ - -L$(top_builddir)/libgaim -lgaim + $(top_builddir)/libgaim/libgaim.la AM_CPPFLAGS = \ -DBR_PTHREADS=0 \