瀏覽代碼

package/zsh: simplify BR2_STATIC_LIBS check

Use the more common ifeq ($(BR2_STATIC_LIBS),) form.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Thomas Petazzoni 3 年之前
父節點
當前提交
8b9014e762
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      package/zsh/zsh.mk

+ 1 - 1
package/zsh/zsh.mk

@@ -44,7 +44,7 @@ else
 ZSH_CONF_OPTS += --disable-pcre
 ZSH_CONF_OPTS += --disable-pcre
 endif
 endif
 
 
-ifneq ($(BR2_STATIC_LIBS),y)
+ifeq ($(BR2_STATIC_LIBS),)
 # zsh uses TRY_RUN to determine these
 # zsh uses TRY_RUN to determine these
 ZSH_CONF_OPTS += \
 ZSH_CONF_OPTS += \
 	zsh_cv_shared_environ=yes \
 	zsh_cv_shared_environ=yes \