From: Yann E. MORIN Date: Mon, 30 Dec 2019 20:36:15 +0000 (+0100) Subject: package/libressl: move config options X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cd2ced0a1d51b71d0ceb686806c13b78b17b8959;p=buildroot.git package/libressl: move config options As we've recently done for libopenssl (openssl, the original), move the libressl option to a libressl-specific Config.in. The gain is minimal at best, but this is mostly for symetry with libopenssl. Signed-off-by: Yann E. MORIN Cc: Thomas Petazzoni Cc: Matt Weber Acked-by: Thomas Petazzoni Signed-off-by: Yann E. MORIN --- diff --git a/package/libressl/Config.in b/package/libressl/Config.in new file mode 100644 index 0000000000..600829cb9e --- /dev/null +++ b/package/libressl/Config.in @@ -0,0 +1,9 @@ +if BR2_PACKAGE_LIBRESSL + +config BR2_PACKAGE_LIBRESSL_BIN + bool "openssl binary" + help + Install the openssl binary to the target file system. This is + a command line tool for doing various cryptographic stuff. + +endif diff --git a/package/openssl/Config.in b/package/openssl/Config.in index 01d3549aef..5ce91cb80f 100644 --- a/package/openssl/Config.in +++ b/package/openssl/Config.in @@ -44,15 +44,7 @@ config BR2_PACKAGE_LIBRESSL http://www.libressl.org/ -if BR2_PACKAGE_LIBRESSL - -config BR2_PACKAGE_LIBRESSL_BIN - bool "openssl binary" - help - Install the openssl binary to the target file system. This is - a command line tool for doing various cryptographic stuff. - -endif +source "package/libressl/Config.in" # openssl from br2-external trees, if any source "$BR2_BASE_DIR/.br2-external.in.openssl"