Browse Source

fix conditional non-static compile

Waldemar Brodkorb 14 years ago
parent
commit
258ab03b24
1 changed files with 2 additions and 2 deletions
  1. 2 2
      package/zlib/Makefile

+ 2 - 2
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