changeset 14435:9c6533500fff

[gaim-migrate @ 17149] Never EVER use -L and -l for a library in your own build. committer: Tailor Script <tailor@pidgin.im>
author Gary Kramlich <grim@reaperworld.com>
date Mon, 04 Sep 2006 03:23:41 +0000
parents 72eae9311ed5
children 289490ee84d1
files console/Makefile.am gtk/Makefile.am
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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 \
--- 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 \