From: Peter Korsgaard Date: Mon, 26 Oct 2015 13:17:54 +0000 (+0100) Subject: x265: fix typo in cli handling X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=23aa0b468819bc34b307ac51a4665901cf0608ad;p=buildroot.git x265: fix typo in cli handling A typo sneaked in during my cleanups of x265, fix it. Reported-by: Thijs Vermeir Signed-off-by: Peter Korsgaard --- diff --git a/package/x265/x265.mk b/package/x265/x265.mk index aa61066be9..a51d34b286 100644 --- a/package/x265/x265.mk +++ b/package/x265/x265.mk @@ -25,7 +25,7 @@ endif ifeq ($(BR2_PACKAGE_X265_CLI),y) X265_CONF_OPTS += -DENABLE_CLI=true else -X265_CONF_OPTS += -DENABLE_CLI=else +X265_CONF_OPTS += -DENABLE_CLI=false endif $(eval $(cmake-package))