aboutsummaryrefslogtreecommitdiff
path: root/t/prep.pl
diff options
context:
space:
mode:
authorAndreas Guldstrand <andreas.guldstrand@gmail.com>2013-10-24 20:32:38 +0200
committerAndreas Guldstrand <andreas.guldstrand@gmail.com>2013-10-24 20:32:38 +0200
commit0e5a36a35f863e91aad439db094607623a0017ca (patch)
tree9319201f1dcf702c3f6464122e1758df92e1e3cf /t/prep.pl
parent5e381bd247f137a2387ddb243033237d6f2bdf52 (diff)
downloadsbotools2-0e5a36a35f863e91aad439db094607623a0017ca.tar.xz
bundling Sort::Versions
* Added Sort/Versions.pm and t/versions.t to the MANIFEST. * Removed dependency on Sort::Versions / perl-Sort-Versions from both the Makefile.PL andthe sbotools.info files. * Added Sort::Version's copyright notice to README. * Made the test prep.pl copy the Sort/Versions.pm to the test hierarchy.
Diffstat (limited to 't/prep.pl')
-rwxr-xr-xt/prep.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/t/prep.pl b/t/prep.pl
index b7dc111..cfbd269 100755
--- a/t/prep.pl
+++ b/t/prep.pl
@@ -8,7 +8,9 @@ use Tie::File;
chomp(my $pwd = `pwd`);
mkdir "$pwd/SBO" unless -d "$pwd/SBO";
+mkdir "$pwd/Sort" unless -d "$pwd/Sort";
copy('../SBO-Lib/lib/SBO/Lib.pm', "$pwd/SBO");
+copy('../SBO-Lib/lib/Sort/Versions.pm', "$pwd/Sort");
open my $write, '>>', "$pwd/SBO/Lib.pm";