commit:f0c9b096117c7f0822a888239c67e39cb6722bf5
author:Chip Black
committer:Chip Black
date:Thu Jul 3 18:21:26 2014 -0500
parents:57bd5973e1bace9c7cf8889294c710b65462dee9
Reorder libs in Makefile.PL so it will link properly
diff --git a/lib/perl/Blerg-Database/Makefile.PL b/lib/perl/Blerg-Database/Makefile.PL
line changes: +1/-1
index 5f0ab24..7068a9b
--- a/lib/perl/Blerg-Database/Makefile.PL
+++ b/lib/perl/Blerg-Database/Makefile.PL
@@ -10,7 +10,7 @@ WriteMakefile(
       (ABSTRACT_FROM  => 'lib/Blerg/Database.pm', # retrieve abstract from module
        AUTHOR         => 'Chip Black <bytex64@bytex64.net>') : ()),
     LIBS              => [''], # e.g., '-lm'
-    OBJECT            => '$(BASEEXT)$(OBJ_EXT) ../../../blerg.a ../../../blerg_auth.a ../../../builddeps/scrypt.a',
+    OBJECT            => '$(BASEEXT)$(OBJ_EXT) ../../../blerg_auth.a ../../../builddeps/scrypt.a ../../../blerg.a',
     DEFINE            => '', # e.g., '-DHAVE_SOMETHING'
     INC               => '-I../../..', # e.g., '-I. -I/usr/include/other'
 );