diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2024-01-04 00:05:45 -0800 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2024-01-04 00:11:25 -0800 |
commit | a1831f8e834b4005c7636c1d66d2d69b85422043 (patch) | |
tree | fe7e1879fd12c90231d33919da677839d9a557f4 | |
parent | 8a5a3d2004cbcbbebe0aa435cc4ecbda8ea61f98 (diff) | |
download | mgamirrors-a1831f8e834b4005c7636c1d66d2d69b85422043.tar mgamirrors-a1831f8e834b4005c7636c1d66d2d69b85422043.tar.gz mgamirrors-a1831f8e834b4005c7636c1d66d2d69b85422043.tar.bz2 mgamirrors-a1831f8e834b4005c7636c1d66d2d69b85422043.tar.xz mgamirrors-a1831f8e834b4005c7636c1d66d2d69b85422043.zip |
Use the proper name case in the makefile
The lower-case name caused the files in root/ to be placed into the
wrong directory on install, where Catalyst couldn't find them at
run-time.
-rw-r--r-- | Makefile.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.PL b/Makefile.PL index 9ec5fc2..9057411 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -6,7 +6,7 @@ use Module::Install::Catalyst; # Complain loudly if you don't have # Catalyst::Devel installed or haven't said # 'make dist' to create a standalone tarball. -name 'mga-mirrors'; +name 'MGA-Mirrors'; all_from 'lib/MGA/Mirrors.pm'; requires 'Catalyst::Runtime' => '5.80000'; |