summaryrefslogtreecommitdiff
path: root/package/zlib/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-12-07 21:09:11 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2009-12-07 21:09:11 +0100
commit258ab03b24d7cb8809f37db11870e9c5680471db (patch)
tree98bdba175da21b0ff7f4503f5d87f8c8d0f392b2 /package/zlib/Makefile
parent9de5b950a6ef22e14f2f749367d2bc302f90df86 (diff)
fix conditional non-static compile
Diffstat (limited to 'package/zlib/Makefile')
-rw-r--r--package/zlib/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/zlib/Makefile b/package/zlib/Makefile
index cf4edff8d..1d3b0489c 100644
--- a/package/zlib/Makefile
+++ b/package/zlib/Makefile
@@ -28,11 +28,11 @@ CONFIGURE_STYLE:= manual
BUILD_STYLE:= auto
INSTALL_STYLE:= auto
-ifeq ($(ADK_NATIVE),n)
+ifeq ($(ADK_NATIVE),)
COPTS:= $(TARGET_CONFIGURE_OPTS)
endif
-ifeq ($(ADK_STATIC),n)
+ifeq ($(ADK_STATIC),)
CONFIGURE_OPTS:= --shared
endif