Bug 185330: Checksetup console input doesn't work on Win32. r,a=justdave

This commit is contained in:
jouni%heikniemi.net 2004-01-04 07:39:00 +00:00
parent 61153fdd3a
commit 4e0370944c

View File

@ -336,6 +336,14 @@ if (%missing) {
}
}
# If we're running on Windows, reset the input line terminator so that
# console input works properly - loading CGI tends to mess it up
if ($^O =~ /MSWin/i) {
$/ = "\015\012";
}
###########################################################################
# Global definitions
###########################################################################