about summary refs log tree commit diff
path: root/buildtools
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-02-24 07:52:29 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-02-24 07:52:29 +0000
commit60e637828328cb6e340997672819616ddf02c379 (patch)
tree48c4d0455e2d0c84178ad8cc6def42b390048f54 /buildtools
parent3dbaeec35f85d50dbc1f39a772d0add45a0f5a74 (diff)
downloadnetpbm-mirror-60e637828328cb6e340997672819616ddf02c379.tar.gz
netpbm-mirror-60e637828328cb6e340997672819616ddf02c379.tar.xz
netpbm-mirror-60e637828328cb6e340997672819616ddf02c379.zip
consistently use upper case Y in boolean make file variables
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2137 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'buildtools')
-rwxr-xr-xbuildtools/configure.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildtools/configure.pl b/buildtools/configure.pl
index b03630d8..c86064df 100755
--- a/buildtools/configure.pl
+++ b/buildtools/configure.pl
@@ -2289,7 +2289,7 @@ if ($platform eq "GNU") {
     # only Ppmtompeg and it isn't clear that using long instead of int is
     # ever right anyway.
 
-    push(@config_mk, "OMIT_NETWORK = y\n");
+    push(@config_mk, "OMIT_NETWORK = Y\n");
     push(@config_mk, "LINKER_CAN_DO_EXPLICIT_LIBRARY=Y\n");
 } elsif ($platform eq "IRIX") {
 #    push(@config_mk, "INSTALL = install\n");
@@ -2303,7 +2303,7 @@ if ($platform eq "GNU") {
         makeCompilerGcc(\@config_mk);
     }
     push(@config_mk, "EXE = .exe\n");
-    push(@config_mk, "OMIT_NETWORK = y\n");
+    push(@config_mk, "OMIT_NETWORK = Y\n");
 #    # Though it may not have the link as "ginstall", "install" in a Windows
 #    # Unix environment is usually GNU install.
 #    my $ginstall_result = `ginstall --version 2>/dev/null`;