From dd4263d90609e4e5146442324ccd7def61410384 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 3 Apr 2006 09:15:27 +0000 Subject: [PATCH] Change chop to chomp when reading lines, so CRLF is properly processed on the operating systems where they are the normal line endings --- Configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Configure b/Configure index 54b33513e8..13d7f98d11 100755 --- a/Configure +++ b/Configure @@ -807,7 +807,7 @@ PROCESS_ARGS: { while () { - chop; + chomp; if (/^CONFIGURE_ARGS=(.*)/) { $argvstring=$1; @@ -1290,7 +1290,7 @@ print OUT "### Generated automatically from Makefile.org by Configure.\n\n"; my $sdirs=0; while () { - chop; + chomp; $sdirs = 1 if /^SDIRS=/; if ($sdirs) { my $dir; -- 2.50.1