| 
      
      
      From: <amc...@us...> - 2006-09-04 03:23:45
      
     | 
| Revision: 17149
          http://svn.sourceforge.net/gaim/?rev=17149&view=rev
Author:   amc_grim
Date:     2006-09-03 20:23:41 -0700 (Sun, 03 Sep 2006)
Log Message:
-----------
Never EVER use -L and -l for a library in your own build.
Modified Paths:
--------------
    trunk/console/Makefile.am
    trunk/gtk/Makefile.am
Modified: trunk/console/Makefile.am
===================================================================
--- trunk/console/Makefile.am	2006-09-04 01:06:28 UTC (rev 17148)
+++ trunk/console/Makefile.am	2006-09-04 03:23:41 UTC (rev 17149)
@@ -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 \
Modified: trunk/gtk/Makefile.am
===================================================================
--- trunk/gtk/Makefile.am	2006-09-04 01:06:28 UTC (rev 17148)
+++ trunk/gtk/Makefile.am	2006-09-04 03:23:41 UTC (rev 17149)
@@ -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 \
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 |