[libpeas] Reorder assignment of linker flags of peas-demo



commit 01238f9dc8d268deb614cf4b87146d03bdf69871
Author: Steve Frécinaux <code istique net>
Date:   Tue Jul 20 12:23:02 2010 +0200

    Reorder assignment of linker flags of peas-demo
    
    This is to ensure the libtool wrapper will link against our local copy
    of the compiled libraries instead of preferring the already installed
    version.
    
    You can check the libs the uninstalled binary links to with this
    command line:
    
        libtool --mode=execute ldd peas-demo

 peas-demo/Makefile.am |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/peas-demo/Makefile.am b/peas-demo/Makefile.am
index 8eed0de..42c4eec 100644
--- a/peas-demo/Makefile.am
+++ b/peas-demo/Makefile.am
@@ -16,10 +16,10 @@ peas_demo_SOURCES = \
 	peas-demo.c
 
 peas_demo_LDADD = \
-	$(PEAS_LIBS)			\
-	$(PEASUI_LIBS)			\
 	../libpeas/libpeas-1.0.la	\
-	../libpeasui/libpeasui-1.0.la
+	../libpeasui/libpeasui-1.0.la	\
+	$(PEAS_LIBS)			\
+	$(PEASUI_LIBS)
 
 peas_demo_CFLAGS = \
 	$(PEAS_CFLAGS)			\



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]