Skip to content

Commit

Permalink
various changes to fix Build.PL and Makefile.PL install scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
lstein committed Oct 28, 2014
1 parent 7f2badb commit 04477a2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,8 @@ close F;
foreach (@INC) {
s/^-I//;
}
unshift @INC,$ENV{GD_INC} if $ENV{GD_INC};
unshift @INC,$ENV{GD_INC};
@INC = grep {/\S/} @INC;

my $build = Module::Build->new(
module_name => 'GD',
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@
~$
\.bak$
^_build
\b#
lib/GD/Image.pm
8 changes: 3 additions & 5 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build_requires:
configure_requires:
Module::Build: '0.42'
dynamic_config: 1
generated_by: 'Module::Build version 0.4205, CPAN::Meta::Converter version 2.120351'
generated_by: 'Module::Build version 0.421, CPAN::Meta::Converter version 2.142690'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
Expand All @@ -16,24 +16,22 @@ name: GD
provides:
GD:
file: lib/GD.pm
version: '2.55'
version: '2.56'
GD::Group:
file: lib/GD/Group.pm
version: '1'
GD::Polygon:
file: lib/GD/Polygon.pm
version: 0
GD::Polyline:
file: lib/GD/Polyline.pm
version: '0.2'
GD::Simple:
file: lib/GD/Simple.pm
version: 0
requires:
Math::Trig: '0'
resources:
license: http://dev.perl.org/licenses/
version: '2.55'
version: '2.56'
x_repository:
type: git
url: git://github.com/lstein/Perl-GD.git
Expand Down

0 comments on commit 04477a2

Please sign in to comment.