package/libcurl: rename curl binary config symbol
Package optional or choice config symbols are usually prefixed with the package config symbol name. Rename BR2_PACKAGE_CURL to BR2_PACKAGE_LIBCURL_CURL to conform. Update references to the old name. Cc: Matt Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Reviewed-by: Matt Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
8e267afcc2
commit
2a057339cc
@ -146,6 +146,14 @@ endif
|
||||
|
||||
comment "Legacy options removed in 2020.02"
|
||||
|
||||
config BR2_PACKAGE_CURL
|
||||
bool "BR2_PACKAGE_CURL was renamed"
|
||||
select BR2_PACKAGE_LIBCURL_CURL
|
||||
select BR2_LEGACY
|
||||
help
|
||||
The BR2_PACKAGE_CURL config symbol was renamed to
|
||||
BR2_PACKAGE_LIBCURL_CURL.
|
||||
|
||||
config BR2_PACKAGE_GSTREAMER
|
||||
bool "gstreamer-0.10 removed"
|
||||
select BR2_LEGACY
|
||||
|
@ -98,7 +98,7 @@ config snippet. For example, here's how you would test +libcurl+ with
|
||||
----
|
||||
$ cat libcurl.config
|
||||
BR2_PACKAGE_LIBCURL=y
|
||||
BR2_PACKAGE_CURL=y
|
||||
BR2_PACKAGE_LIBCURL_CURL=y
|
||||
BR2_PACKAGE_OPENSSL=y
|
||||
----
|
||||
|
||||
|
@ -4,7 +4,7 @@ config BR2_PACKAGE_DEHYDRATED
|
||||
select BR2_PACKAGE_BASH
|
||||
select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # bash
|
||||
select BR2_PACKAGE_LIBCURL
|
||||
select BR2_PACKAGE_CURL
|
||||
select BR2_PACKAGE_LIBCURL_CURL
|
||||
select BR2_PACKAGE_OPENSSL
|
||||
select BR2_PACKAGE_LIBOPENSSL_BIN if BR2_PACKAGE_LIBOPENSSL
|
||||
select BR2_PACKAGE_LIBRESSL_BIN if BR2_PACKAGE_LIBRESSL
|
||||
|
@ -41,7 +41,7 @@ config BR2_PACKAGE_GLSLSANDBOX_PLAYER_SCRIPTS
|
||||
select BR2_PACKAGE_BASH # runtime
|
||||
select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS if BR2_PACKAGE_BUSYBOX # bash
|
||||
select BR2_PACKAGE_COREUTILS # runtime (timeout)
|
||||
select BR2_PACKAGE_CURL # runtime
|
||||
select BR2_PACKAGE_LIBCURL_CURL # runtime
|
||||
select BR2_PACKAGE_IMAGEMAGICK # runtime
|
||||
select BR2_PACKAGE_JPEG # runtime
|
||||
select BR2_PACKAGE_LIBCURL # runtime
|
||||
|
@ -9,7 +9,7 @@ config BR2_PACKAGE_LIBCURL
|
||||
|
||||
if BR2_PACKAGE_LIBCURL
|
||||
|
||||
config BR2_PACKAGE_CURL
|
||||
config BR2_PACKAGE_LIBCURL_CURL
|
||||
bool "curl binary"
|
||||
help
|
||||
Install curl binary as well
|
||||
|
@ -162,7 +162,7 @@ define LIBCURL_FIX_DOT_PC
|
||||
endef
|
||||
LIBCURL_POST_PATCH_HOOKS += $(if $(BR2_PACKAGE_LIBCURL_OPENSSL),LIBCURL_FIX_DOT_PC)
|
||||
|
||||
ifeq ($(BR2_PACKAGE_CURL),)
|
||||
ifeq ($(BR2_PACKAGE_LIBCURL_CURL),)
|
||||
define LIBCURL_TARGET_CLEANUP
|
||||
rm -rf $(TARGET_DIR)/usr/bin/curl
|
||||
endef
|
||||
|
Loading…
Reference in New Issue
Block a user