summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MANIFEST1
-rw-r--r--Makefile.PL9
2 files changed, 8 insertions, 2 deletions
diff --git a/MANIFEST b/MANIFEST
index 56b937d..21da700 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -12,3 +12,4 @@ utils/rhrd-group
utils/rhrd-show
utils/rhrd-user
utils/rhrd-sanity-check
+utils/rhrd-schedules
diff --git a/Makefile.PL b/Makefile.PL
index a919bae..5b79606 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,7 +1,7 @@
use ExtUtils::MakeMaker;
use 5.004;
-my @utils = qw(get-rd-token get-rd-week update-rd-tokens rhrd-user rhrd-group rhrd-show rhrd-sanity-check);
+my @utils = qw(get-rd-token get-rd-week update-rd-tokens rhrd-user rhrd-group rhrd-schedules rhrd-show rhrd-sanity-check);
WriteMakefile(
NAME => 'RHRD',
@@ -14,7 +14,12 @@ WriteMakefile(
"DBI" => 0,
"POSIX" => 0,
"DateTime" => 0,
- "DateTime::TimeZone" => 0
+ "DateTime::TimeZone" => 0,
+ "DateTime::Format::Strptime" => 0,
+ "Date::Calc" => 0,
+ "JSON::Any" => 0,
+ "URI" => 0,
+ "LWP" => 0
},
EXE_FILES => [ map { "utils/$_" } @utils ],
);