diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2014-04-02 02:28:23 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2014-04-02 02:28:23 +0000 |
commit | e284dfd09a24b9ae048612f6528c222828d3d9f4 (patch) | |
tree | 921e45a3b0185fce630eefa51fb9451589be02ac /GNUmakefile | |
parent | 89280ede1fdda0257c4788746ae6cc7dc2287831 (diff) | |
download | netpbm-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 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/GNUmakefile b/GNUmakefile index 527d1a15..b0b7f005 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -396,19 +396,19 @@ lib/install.hdr: $(MAKE) -C $(dir $@) -f $(SRCDIR)/lib/Makefile \ SRCDIR=$(SRCDIR) BUILDDIR=$(BUILDDIR) $(notdir $@) -ifeq ($(STATICLIB_TOO),y) -BUILD_STATIC = y +ifeq ($(STATICLIB_TOO),Y) +BUILD_STATIC = Y else ifeq ($(NETPBMLIBTYPE),unixstatic) - BUILD_STATIC = y + BUILD_STATIC = Y else - BUILD_STATIC = n + BUILD_STATIC = N endif endif .PHONY: install.staticlib install.staticlib: -ifeq ($(BUILD_STATIC),y) +ifeq ($(BUILD_STATIC),Y) $(MAKE) -C lib -f $(SRCDIR)/lib/Makefile \ SRCDIR=$(SRCDIR) BUILDDIR=$(BUILDDIR) install.staticlib endif |