diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2013-10-24 20:32:38 +0200 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2013-10-24 20:32:38 +0200 |
commit | 0e5a36a35f863e91aad439db094607623a0017ca (patch) | |
tree | 9319201f1dcf702c3f6464122e1758df92e1e3cf /t/prep.pl | |
parent | 5e381bd247f137a2387ddb243033237d6f2bdf52 (diff) | |
download | sbotools2-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-x | t/prep.pl | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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"; |