In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/d9a4b459f94297889956ac3adc42707365f274c2?hp=3353de27e6a3954b5d45465efd422b1b614675dd>
- Log ----------------------------------------------------------------- commit d9a4b459f94297889956ac3adc42707365f274c2 Author: Nicholas Clark <[email protected]> Date: Tue Nov 30 15:51:10 2010 +0000 Restore building Encode's subextensions for a static build. The special-casing in Configure still referred to ext/Encode, so likely this was broken when Encode moved to cpan/ Fixes #79494, reported by Marc Lehmann. ----------------------------------------------------------------------- Summary of changes: Configure | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Configure b/Configure index 793f8fa..e241e40 100755 --- a/Configure +++ b/Configure @@ -22234,7 +22234,7 @@ esac # the appropriate Makefile.PL. case " $static_ext " in *" Encode "*) # Add the subextensions of Encode - cd "$rsrc/ext" + cd "$rsrc/cpan" for xxx in `ls Encode/*/Makefile.PL|awk -F/ '{print $2}'`; do static_ext="$static_ext Encode/$xxx" done -- Perl5 Master Repository
