summaryrefslogtreecommitdiff
path: root/win32/config_h.PL
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-03-07 06:49:49 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-03-07 06:49:49 +0000
commit50892819e20b00d77bc12fbb5570259d6fac8bf2 (patch)
tree762d9f34017d9a0299e6377028b80c3e2c21fff9 /win32/config_h.PL
parent1e62ac33a10830c28db17da2c54df825238f3e85 (diff)
downloadperl-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.PL1
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;