Change chop to chomp when reading lines, so CRLF is properly processed on
the operating systems where they are the normal line endings
diff --git a/Configure b/Configure
index 621092b..e4124c4 100755
--- a/Configure
+++ b/Configure
@@ -698,7 +698,7 @@
 				{
 				while (<IN>)
 					{
-					chop;
+					chomp;
 					if (/^CONFIGURE_ARGS=(.*)/)
 						{
 						$argvstring=$1;
@@ -1280,7 +1280,7 @@
 my $sdirs=0;
 while (<IN>)
 	{
-	chop;
+	chomp;
 	$sdirs = 1 if /^SDIRS=/;
 	if ($sdirs) {
 		my $dir;