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 /win32/config_h.PL | |
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 'win32/config_h.PL')
-rw-r--r-- | win32/config_h.PL | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/config_h.PL b/win32/config_h.PL index 471c43c7e1..f317e5a407 100644 --- a/win32/config_h.PL +++ b/win32/config_h.PL @@ -27,6 +27,7 @@ eval $str; die "$str:$@" if $@; open(H,">$file.new") || die "Cannot open $file.new:$!"; +binmode H; # no CRs (which cause a spurious rebuild) while (<SH>) { last if /^$term$/o; |