All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/libgpg-error: add configure option to install gpg-error-config
@ 2023-01-05 18:51 Bernd Kuhls
  2023-01-05 22:54 ` James Hilliard
  2023-01-06  7:51 ` Thomas Petazzoni via buildroot
  0 siblings, 2 replies; 3+ messages in thread
From: Bernd Kuhls @ 2023-01-05 18:51 UTC (permalink / raw)
  To: buildroot

Upstream commit[1]

https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgpg-error.git;a=commitdiff;h=0b47de9c719b0ed0da0791f0525de073737bde5a

changed behaviour: "gpg-error-config is now only installed when enabled"

Fixes:
http://autobuild.buildroot.net/results/bc1/bc1566a0fa42f68f1f15f74a61d4081e269e1689/

[1] included in version 1.46, added in buildroot with commit b5bdcb4cc5

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/libgpg-error/libgpg-error.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/libgpg-error/libgpg-error.mk b/package/libgpg-error/libgpg-error.mk
index ab3c7c3bf2..3f4a45a7e4 100644
--- a/package/libgpg-error/libgpg-error.mk
+++ b/package/libgpg-error/libgpg-error.mk
@@ -15,6 +15,7 @@ LIBGPG_ERROR_CONFIG_SCRIPTS = gpg-error-config
 LIBGPG_ERROR_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
 LIBGPG_ERROR_CONF_OPTS = \
 	--host=$(BR2_PACKAGE_LIBGPG_ERROR_SYSCFG) \
+	--enable-install-gpg-error-config \
 	--disable-tests \
 	--disable-languages
 
-- 
2.34.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/libgpg-error: add configure option to install gpg-error-config
  2023-01-05 18:51 [Buildroot] [PATCH 1/1] package/libgpg-error: add configure option to install gpg-error-config Bernd Kuhls
@ 2023-01-05 22:54 ` James Hilliard
  2023-01-06  7:51 ` Thomas Petazzoni via buildroot
  1 sibling, 0 replies; 3+ messages in thread
From: James Hilliard @ 2023-01-05 22:54 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: buildroot

On Thu, Jan 5, 2023 at 11:52 AM Bernd Kuhls <bernd.kuhls@t-online.de> wrote:
>
> Upstream commit[1]
>
> https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgpg-error.git;a=commitdiff;h=0b47de9c719b0ed0da0791f0525de073737bde5a
>
> changed behaviour: "gpg-error-config is now only installed when enabled"
>
> Fixes:
> http://autobuild.buildroot.net/results/bc1/bc1566a0fa42f68f1f15f74a61d4081e269e1689/
>
> [1] included in version 1.46, added in buildroot with commit b5bdcb4cc5
>
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Reviewed-by: James Hilliard <james.hilliard1@gmail.com>
> ---
>  package/libgpg-error/libgpg-error.mk | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/package/libgpg-error/libgpg-error.mk b/package/libgpg-error/libgpg-error.mk
> index ab3c7c3bf2..3f4a45a7e4 100644
> --- a/package/libgpg-error/libgpg-error.mk
> +++ b/package/libgpg-error/libgpg-error.mk
> @@ -15,6 +15,7 @@ LIBGPG_ERROR_CONFIG_SCRIPTS = gpg-error-config
>  LIBGPG_ERROR_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
>  LIBGPG_ERROR_CONF_OPTS = \
>         --host=$(BR2_PACKAGE_LIBGPG_ERROR_SYSCFG) \
> +       --enable-install-gpg-error-config \
>         --disable-tests \
>         --disable-languages
>
> --
> 2.34.1
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/libgpg-error: add configure option to install gpg-error-config
  2023-01-05 18:51 [Buildroot] [PATCH 1/1] package/libgpg-error: add configure option to install gpg-error-config Bernd Kuhls
  2023-01-05 22:54 ` James Hilliard
@ 2023-01-06  7:51 ` Thomas Petazzoni via buildroot
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-01-06  7:51 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: buildroot

On Thu,  5 Jan 2023 19:51:40 +0100
Bernd Kuhls <bernd.kuhls@t-online.de> wrote:

> Upstream commit[1]
> 
> https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgpg-error.git;a=commitdiff;h=0b47de9c719b0ed0da0791f0525de073737bde5a
> 
> changed behaviour: "gpg-error-config is now only installed when enabled"
> 
> Fixes:
> http://autobuild.buildroot.net/results/bc1/bc1566a0fa42f68f1f15f74a61d4081e269e1689/
> 
> [1] included in version 1.46, added in buildroot with commit b5bdcb4cc5
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/libgpg-error/libgpg-error.mk | 1 +
>  1 file changed, 1 insertion(+)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2023-01-06  7:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-05 18:51 [Buildroot] [PATCH 1/1] package/libgpg-error: add configure option to install gpg-error-config Bernd Kuhls
2023-01-05 22:54 ` James Hilliard
2023-01-06  7:51 ` Thomas Petazzoni via buildroot

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.