summaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
authorRuss Allbery <rra@cpan.org>2016-10-25 16:28:18 -0700
committerRuss Allbery <rra@cpan.org>2016-10-25 16:28:18 -0700
commitfe7010b291b420ba9e15ab8fb6f38f02036cf2f2 (patch)
treeeef4fc6718e8613de7d2c159d5ba1b22f5ab5494 /Build.PL
parent9605830a1afd0919559fed1fc35aab34eb4cb804 (diff)
Add IPC::System::Simple as a test requirement
Diffstat (limited to 'Build.PL')
-rw-r--r--Build.PL5
1 files changed, 3 insertions, 2 deletions
diff --git a/Build.PL b/Build.PL
index 35e69b0..9065f01 100644
--- a/Build.PL
+++ b/Build.PL
@@ -3,7 +3,7 @@
# Build script for the docknot application.
#
# Written by Russ Allbery <rra@cpan.org>
-# Copyright 2013 Russ Allbery <rra@cpan.org>
+# Copyright 2013, 2016 Russ Allbery <rra@cpan.org>
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
@@ -43,7 +43,8 @@ my $build = Module::Build->new(
share_dir => { module => { 'App::DocKnot' => 'share' } },
# Other package relationships.
- configure_requires => { 'Module::Build' => 0.36 },
+ configure_requires => { 'Module::Build' => 0.36 },
+ test_requires => { 'IPC::System::Simple' => 0 },
requires => {
'File::BaseDir' => 0,
'File::ShareDir' => 0,