* [Buildroot] [PATCH] package/localedef: add missing dependeny on host-gawk
@ 2020-03-17 22:02 Romain Naour
2020-03-21 16:38 ` Yann E. MORIN
2020-04-07 6:28 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Romain Naour @ 2020-03-17 22:02 UTC (permalink / raw)
To: buildroot
While reviewing the patch [1], we noticed that host-gawk dependency
was missing. I may trigger an issue if gawk is missing on the host
since it's a "critical tool" [2].
Indeed, localedef package is actually glibc sources that check gawk
host binary.
host-gawk is listed in glibc package dependency [3], so add it now.
[1] af90a104c06542a1bf5545eaf9b9c7beb7176e80
[2] https://sourceware.org/git/?p=glibc.git;a=blob;f=configure.ac;h=49b900c1ed68fa4dd1dadca809ceb6e8b237a89c;hb=9ea3686266dca3f004ba874745a4087a89682617#l1021
[3] https://git.buildroot.net/buildroot/tree/package/glibc/glibc.mk?h=2020.02#n38
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: Yann E. MORIN <yann.morin.1998@free.fr>
---
package/localedef/localedef.mk | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/package/localedef/localedef.mk b/package/localedef/localedef.mk
index 3e22f68039..1093e106fa 100644
--- a/package/localedef/localedef.mk
+++ b/package/localedef/localedef.mk
@@ -14,7 +14,8 @@ HOST_LOCALEDEF_DL_SUBDIR = glibc
HOST_LOCALEDEF_DEPENDENCIES = \
$(BR2_MAKE_HOST_DEPENDENCY) \
- host-bison
+ host-bison \
+ host-gawk
HOST_LOCALEDEF_CONF_ENV += ac_cv_prog_MAKE="$(BR2_MAKE)"
--
2.24.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH] package/localedef: add missing dependeny on host-gawk
2020-03-17 22:02 [Buildroot] [PATCH] package/localedef: add missing dependeny on host-gawk Romain Naour
@ 2020-03-21 16:38 ` Yann E. MORIN
2020-04-07 6:28 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2020-03-21 16:38 UTC (permalink / raw)
To: buildroot
Romain, All,
On 2020-03-17 23:02 +0100, Romain Naour spake thusly:
> While reviewing the patch [1], we noticed that host-gawk dependency
> was missing. I may trigger an issue if gawk is missing on the host
> since it's a "critical tool" [2].
> Indeed, localedef package is actually glibc sources that check gawk
> host binary.
> host-gawk is listed in glibc package dependency [3], so add it now.
>
> [1] af90a104c06542a1bf5545eaf9b9c7beb7176e80
> [2] https://sourceware.org/git/?p=glibc.git;a=blob;f=configure.ac;h=49b900c1ed68fa4dd1dadca809ceb6e8b237a89c;hb=9ea3686266dca3f004ba874745a4087a89682617#l1021
> [3] https://git.buildroot.net/buildroot/tree/package/glibc/glibc.mk?h=2020.02#n38
>
> Signed-off-by: Romain Naour <romain.naour@gmail.com>
> Cc: Yann E. MORIN <yann.morin.1998@free.fr>
Applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> package/localedef/localedef.mk | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/package/localedef/localedef.mk b/package/localedef/localedef.mk
> index 3e22f68039..1093e106fa 100644
> --- a/package/localedef/localedef.mk
> +++ b/package/localedef/localedef.mk
> @@ -14,7 +14,8 @@ HOST_LOCALEDEF_DL_SUBDIR = glibc
>
> HOST_LOCALEDEF_DEPENDENCIES = \
> $(BR2_MAKE_HOST_DEPENDENCY) \
> - host-bison
> + host-bison \
> + host-gawk
>
> HOST_LOCALEDEF_CONF_ENV += ac_cv_prog_MAKE="$(BR2_MAKE)"
>
> --
> 2.24.1
>
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH] package/localedef: add missing dependeny on host-gawk
2020-03-17 22:02 [Buildroot] [PATCH] package/localedef: add missing dependeny on host-gawk Romain Naour
2020-03-21 16:38 ` Yann E. MORIN
@ 2020-04-07 6:28 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2020-04-07 6:28 UTC (permalink / raw)
To: buildroot
>>>>> "Romain" == Romain Naour <romain.naour@gmail.com> writes:
> While reviewing the patch [1], we noticed that host-gawk dependency
> was missing. I may trigger an issue if gawk is missing on the host
> since it's a "critical tool" [2].
> Indeed, localedef package is actually glibc sources that check gawk
> host binary.
> host-gawk is listed in glibc package dependency [3], so add it now.
> [1] af90a104c06542a1bf5545eaf9b9c7beb7176e80
> [2] https://sourceware.org/git/?p=glibc.git;a=blob;f=configure.ac;h=49b900c1ed68fa4dd1dadca809ceb6e8b237a89c;hb=9ea3686266dca3f004ba874745a4087a89682617#l1021
> [3] https://git.buildroot.net/buildroot/tree/package/glibc/glibc.mk?h=2020.02#n38
> Signed-off-by: Romain Naour <romain.naour@gmail.com>
> Cc: Yann E. MORIN <yann.morin.1998@free.fr>
Committed to 2020.02.x, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-04-07 6:28 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-17 22:02 [Buildroot] [PATCH] package/localedef: add missing dependeny on host-gawk Romain Naour
2020-03-21 16:38 ` Yann E. MORIN
2020-04-07 6:28 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox