diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-11-30 15:51:10 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-11-30 15:53:32 +0000 |
commit | d9a4b459f94297889956ac3adc42707365f274c2 (patch) | |
tree | 9e39b3952ae3cfb57c46423f4d7a5a29d86e3668 | |
parent | 3353de27e6a3954b5d45465efd422b1b614675dd (diff) | |
download | perl-d9a4b459f94297889956ac3adc42707365f274c2.tar.gz |
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.
-rwxr-xr-x | Configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |