From c7f77bded7093dd96ce6f2dd436f92336d75eb40 Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Sun, 17 Mar 2024 20:04:09 +0100 Subject: [PATCH] minisatip: Fix configure option for openssl The configure option which depends on openSSL is named --disable-dvbca and not --disable-dvbaes This fixes the following warning: configure: WARNING: unrecognized options: --disable-dependency-tracking, --disable-nls, --disable-dvbaes When the option is not set configure will check if openssl is available and compile against openssl if it find openssl. This breaks the build because openssl is not defined as a package dependency. Signed-off-by: Hauke Mehrtens --- multimedia/minisatip/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multimedia/minisatip/Makefile b/multimedia/minisatip/Makefile index 04ea24cdc2..002aea0270 100644 --- a/multimedia/minisatip/Makefile +++ b/multimedia/minisatip/Makefile @@ -48,7 +48,7 @@ endef CONFIGURE_ARGS += \ --$(if $(CONFIG_BUILD_PATENTED),en,dis)able-dvbcsa \ - --$(if $(CONFIG_MINISATIP_AES),en,dis)able-dvbaes \ + --$(if $(CONFIG_MINISATIP_AES),en,dis)able-dvbca \ --$(if $(CONFIG_MINISATIP_CLIENT),en,dis)able-satipc define Package/minisatip/install -- 2.30.2