summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2010-11-30 15:51:10 +0000
committerNicholas Clark <nick@ccl4.org>2010-11-30 15:53:32 +0000
commitd9a4b459f94297889956ac3adc42707365f274c2 (patch)
tree9e39b3952ae3cfb57c46423f4d7a5a29d86e3668 /Configure
parent3353de27e6a3954b5d45465efd422b1b614675dd (diff)
downloadperl-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.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure b/Configure
index 793f8fab6c..e241e40887 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