diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-09-26 21:15:34 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-09-26 21:29:26 +0100 |
commit | a193a2dbe32848820392de0a7fd340ca82c2efd9 (patch) | |
tree | b05d072dcaf2cf6a62c00b57eef0c1010e0e9cd8 /make_ext.pl | |
parent | fe0fb48b9e1689ad6e74e0516047f20e411bc3b4 (diff) | |
download | perl-a193a2dbe32848820392de0a7fd340ca82c2efd9.tar.gz |
Support building extensions in dist/ as well as cpan/ and ext/
Diffstat (limited to 'make_ext.pl')
-rw-r--r-- | make_ext.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make_ext.pl b/make_ext.pl index 5aa861dba3..04c2addedc 100644 --- a/make_ext.pl +++ b/make_ext.pl @@ -19,7 +19,7 @@ my @toolchain = qw(ext/constant/lib ext/Cwd ext/Cwd/lib ext/ExtUtils-Command/lib ext/ExtUtils-Manifest/lib ext/Text-ParseWords/lib cpan/File-Path/lib cpan/AutoLoader/lib); -my @ext_dirs = qw(cpan ext); +my @ext_dirs = qw(cpan dist ext); my $ext_dirs_re = '(?:' . join('|', @ext_dirs) . ')'; # This script acts as a simple interface for building extensions. |