From fa465f9089f38edb1fc9e00a485e4b8b451832b0 Mon Sep 17 00:00:00 2001 From: Graham Bell Date: Thu, 28 Aug 2014 09:47:51 -1000 Subject: [PATCH] Change case of license in Build.PL This is to prevent the "License 'GPL_2' is invalid" error when trying to run the Build.PL script. --- Build.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Build.PL b/Build.PL index 20480df..e0cbfd3 100644 --- a/Build.PL +++ b/Build.PL @@ -24,7 +24,7 @@ my $file = File::Spec->catfile( "lib", "Starlink", "AST.pm" ); my $build = Module::Build->new ( module_name => "Starlink::AST", - license => "GPL_2", + license => "gpl_2", author => [ 'Tim Jenness ', ],