All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] libcurl: fix typo in configure option w/o OpenSSL
@ 2019-02-20  1:40 Trent Piepho
  2019-02-20 21:34 ` Arnout Vandecappelle
  0 siblings, 1 reply; 4+ messages in thread
From: Trent Piepho @ 2019-02-20  1:40 UTC (permalink / raw)
  To: buildroot

When not using OpenSSL, the correct option to configure is --without-ssl
with two dashes.

Fixes: b8b78e7e6a ("libcurl: Allow selection of TLS package libcurl will use")

Signed-off-by: Trent Piepho <tpiepho@impinj.com>
---
 package/libcurl/libcurl.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/libcurl/libcurl.mk b/package/libcurl/libcurl.mk
index 1fae41ea3a..509dbdb54e 100644
--- a/package/libcurl/libcurl.mk
+++ b/package/libcurl/libcurl.mk
@@ -46,7 +46,7 @@ LIBCURL_CONF_ENV += LD_LIBRARY_PATH=$(if $(LD_LIBRARY_PATH),$(LD_LIBRARY_PATH):)
 LIBCURL_CONF_OPTS += --with-ssl=$(STAGING_DIR)/usr \
 	--with-ca-path=/etc/ssl/certs
 else
-LIBCURL_CONF_OPTS += -without-ssl
+LIBCURL_CONF_OPTS += --without-ssl
 endif
 
 ifeq ($(BR2_PACKAGE_LIBCURL_GNUTLS),y)
-- 
2.14.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] libcurl: fix typo in configure option w/o OpenSSL
  2019-02-20  1:40 [Buildroot] [PATCH] libcurl: fix typo in configure option w/o OpenSSL Trent Piepho
@ 2019-02-20 21:34 ` Arnout Vandecappelle
  2019-02-22 12:23   ` Peter Korsgaard
  0 siblings, 1 reply; 4+ messages in thread
From: Arnout Vandecappelle @ 2019-02-20 21:34 UTC (permalink / raw)
  To: buildroot



On 20/02/2019 02:40, Trent Piepho wrote:
> When not using OpenSSL, the correct option to configure is --without-ssl
> with two dashes.
> 
> Fixes: b8b78e7e6a ("libcurl: Allow selection of TLS package libcurl will use")
> 
> Signed-off-by: Trent Piepho <tpiepho@impinj.com>

 Applied to master, thanks.

 Peter, this is for 2018.11.x

 Regards,
 Arnout

> ---
>  package/libcurl/libcurl.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/libcurl/libcurl.mk b/package/libcurl/libcurl.mk
> index 1fae41ea3a..509dbdb54e 100644
> --- a/package/libcurl/libcurl.mk
> +++ b/package/libcurl/libcurl.mk
> @@ -46,7 +46,7 @@ LIBCURL_CONF_ENV += LD_LIBRARY_PATH=$(if $(LD_LIBRARY_PATH),$(LD_LIBRARY_PATH):)
>  LIBCURL_CONF_OPTS += --with-ssl=$(STAGING_DIR)/usr \
>  	--with-ca-path=/etc/ssl/certs
>  else
> -LIBCURL_CONF_OPTS += -without-ssl
> +LIBCURL_CONF_OPTS += --without-ssl
>  endif
>  
>  ifeq ($(BR2_PACKAGE_LIBCURL_GNUTLS),y)
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] libcurl: fix typo in configure option w/o OpenSSL
  2019-02-20 21:34 ` Arnout Vandecappelle
@ 2019-02-22 12:23   ` Peter Korsgaard
  2019-02-22 12:27     ` Arnout Vandecappelle
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Korsgaard @ 2019-02-22 12:23 UTC (permalink / raw)
  To: buildroot

>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:

 > On 20/02/2019 02:40, Trent Piepho wrote:
 >> When not using OpenSSL, the correct option to configure is --without-ssl
 >> with two dashes.
 >> 
 >> Fixes: b8b78e7e6a ("libcurl: Allow selection of TLS package libcurl will use")
 >> 
 >> Signed-off-by: Trent Piepho <tpiepho@impinj.com>

 >  Applied to master, thanks.

 >  Peter, this is for 2018.11.x

No it isn't:

git describe --contains b8b78e7e6a
2019.02-rc1~958^2~211

And it hasn't been backported to the 2018.11.x branch.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] libcurl: fix typo in configure option w/o OpenSSL
  2019-02-22 12:23   ` Peter Korsgaard
@ 2019-02-22 12:27     ` Arnout Vandecappelle
  0 siblings, 0 replies; 4+ messages in thread
From: Arnout Vandecappelle @ 2019-02-22 12:27 UTC (permalink / raw)
  To: buildroot



On 22/02/2019 13:23, Peter Korsgaard wrote:
>>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:
> 
>  > On 20/02/2019 02:40, Trent Piepho wrote:
>  >> When not using OpenSSL, the correct option to configure is --without-ssl
>  >> with two dashes.
>  >> 
>  >> Fixes: b8b78e7e6a ("libcurl: Allow selection of TLS package libcurl will use")
>  >> 
>  >> Signed-off-by: Trent Piepho <tpiepho@impinj.com>
> 
>  >  Applied to master, thanks.
> 
>  >  Peter, this is for 2018.11.x
> 
> No it isn't:
> 
> git describe --contains b8b78e7e6a
> 2019.02-rc1~958^2~211

 I thought I hade done exactly that... I guess I was doing too many things at
the same time :-)

 Regards,
 Arnout

> 
> And it hasn't been backported to the 2018.11.x branch.
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-02-22 12:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-20  1:40 [Buildroot] [PATCH] libcurl: fix typo in configure option w/o OpenSSL Trent Piepho
2019-02-20 21:34 ` Arnout Vandecappelle
2019-02-22 12:23   ` Peter Korsgaard
2019-02-22 12:27     ` Arnout Vandecappelle

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.