From e284dfd09a24b9ae048612f6528c222828d3d9f4 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Wed, 2 Apr 2014 02:28:23 +0000 Subject: Fix bug: inconsistent use of upper and lower case Y and N in make file variables. Make it consistently upper case git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2175 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- buildtools/configure.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'buildtools') diff --git a/buildtools/configure.pl b/buildtools/configure.pl index d4e9bee3..056b705d 100755 --- a/buildtools/configure.pl +++ b/buildtools/configure.pl @@ -835,16 +835,16 @@ sub getLibTypes($$$$$$$$) { my $response = prompt("(y)es or (n)o", $default); if (uc($response) =~ /^(Y|YES)$/) { - $staticlib_too = "y"; + $staticlib_too = "Y"; } elsif (uc($response) =~ /^(N|NO)$/) { - $staticlib_too = "n"; + $staticlib_too = "N"; } else { print("'$response' isn't one of the choices. \n" . "You must choose 'yes' or 'no' (or 'y' or 'n').\n"); exit 12; } } else { - $staticlib_too = "n"; + $staticlib_too = "N"; } print("\n"); -- cgit 1.4.1