diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-03-07 06:49:49 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-03-07 06:49:49 +0000 |
commit | 50892819e20b00d77bc12fbb5570259d6fac8bf2 (patch) | |
tree | 762d9f34017d9a0299e6377028b80c3e2c21fff9 /lib | |
parent | 1e62ac33a10830c28db17da2c54df825238f3e85 (diff) | |
download | perl-50892819e20b00d77bc12fbb5570259d6fac8bf2.tar.gz |
[win32] provide our own popen()/pclose() to fix problems with qx//:
- qx// used to always invoke the shell, now does so only when needed
- qx// didn't respect PERL5SHELL, now does
p4raw-id: //depot/win32/perl@797
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ExtUtils/typemap | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExtUtils/typemap b/lib/ExtUtils/typemap index 20cc96f0b5..03ba050d1e 100644 --- a/lib/ExtUtils/typemap +++ b/lib/ExtUtils/typemap @@ -262,7 +262,7 @@ T_ARRAY ST(ix_$var) = sv_newmortal(); DO_ARRAY_ELEM } - sp += $var.size - 1; + SP += $var.size - 1; T_IN { GV *gv = newGVgen("$Package"); |