summaryrefslogtreecommitdiffstats
path: root/Makefile.PL
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-07-31 15:36:42 -0400
committerJesse Luehrs <doy@tozt.net>2013-07-31 15:36:42 -0400
commit3549615dfe7574885f8c4a56a40d4a4fdb7b11e2 (patch)
treecdc2dba86a1ddcc643f32cbe126407f17067f8d7 /Makefile.PL
parentc9edb90e1c0de979060fe4133248b9a974d3609c (diff)
downloadparse-keyword-3549615dfe7574885f8c4a56a40d4a4fdb7b11e2.tar.gz
parse-keyword-3549615dfe7574885f8c4a56a40d4a4fdb7b11e2.zip
let's try this ordering (#3)
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.PL b/Makefile.PL
index 383791e..647e185 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -13,7 +13,7 @@ open my $fh, '>', 'callparser1.h' or die "Couldn't write to callparser1.h";
$fh->print(callparser1_h);
my @linkable = callparser_linkable;
-push @linkable, "Keyword$Config{obj_ext}" if @linkable;
+unshift @linkable, "Keyword$Config{obj_ext}" if @linkable;
WriteMakefile(
NAME => 'Parse::Keyword',