summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-07-30 22:47:16 -0400
committerJesse Luehrs <doy@tozt.net>2013-07-30 22:48:25 -0400
commitfaa9e82a3905d2c778b36c862f348b79a8c95549 (patch)
treebe3dd7be61e938b787198498ce2f1d7237ecfec5
parent15be837bec36b343a54353e1d8179f0e532479cd (diff)
downloadparse-keyword-faa9e82a3905d2c778b36c862f348b79a8c95549.tar.gz
parse-keyword-faa9e82a3905d2c778b36c862f348b79a8c95549.zip
also update the in-repo Makefile.PL (#3)
-rw-r--r--Makefile.PL5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.PL b/Makefile.PL
index a98919d..27b181a 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -7,10 +7,11 @@ use warnings;
use ExtUtils::MakeMaker::Dist::Zilla::Develop;
-use Devel::CallParser 'callparser1_h';
+use Devel::CallParser 'callparser1_h', 'callparser_linkable';
open my $fh, '>', 'callparser1.h' or die "Couldn't write to callparser1.h";
$fh->print(callparser1_h);
WriteMakefile(
- NAME => 'Parse::Keyword',
+ NAME => 'Parse::Keyword',
+ OBJECT => join(' ', callparser_linkable),
);