about summary refs log tree commit diff
path: root/buildtools
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-04-02 02:28:23 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-04-02 02:28:23 +0000
commite284dfd09a24b9ae048612f6528c222828d3d9f4 (patch)
tree921e45a3b0185fce630eefa51fb9451589be02ac /buildtools
parent89280ede1fdda0257c4788746ae6cc7dc2287831 (diff)
downloadnetpbm-mirror-e284dfd09a24b9ae048612f6528c222828d3d9f4.tar.gz
netpbm-mirror-e284dfd09a24b9ae048612f6528c222828d3d9f4.tar.xz
netpbm-mirror-e284dfd09a24b9ae048612f6528c222828d3d9f4.zip
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
Diffstat (limited to 'buildtools')
-rwxr-xr-xbuildtools/configure.pl6
1 files changed, 3 insertions, 3 deletions
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");