* [Buildroot] [PATCH 1/1] package/giflib: fix host build without convert
@ 2024-03-31 16:43 Fabrice Fontaine
2024-04-01 13:09 ` Yann E. MORIN
2024-04-28 19:35 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2024-03-31 16:43 UTC (permalink / raw)
To: buildroot; +Cc: Bernd Kuhls, Fabrice Fontaine
Do not build docs for host-giflib to avoid the following build failure
without convert on host raised since bump to version 5.2.2 in commit
f98239dada59270efe19de9d9fae50ec9ab9d28c and
https://sourceforge.net/p/giflib/code/ci/d565f6fa04be8973425bd7cd3f169908ac9e95c2:
convert ../pic/gifgrid.gif -resize 50x50 giflib-logo.gif
make[2]: convert: No such file or directory
Fixes: f98239dada59270efe19de9d9fae50ec9ab9d28c
- http://autobuild.buildroot.org/results/04dd54f5060881cb8aa030de34edb4ceea863fa6
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/giflib/giflib.mk | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/giflib/giflib.mk b/package/giflib/giflib.mk
index 770338507b..f37ec8af21 100644
--- a/package/giflib/giflib.mk
+++ b/package/giflib/giflib.mk
@@ -27,7 +27,7 @@ define GIFLIB_BUILD_CMDS
endef
define HOST_GIFLIB_BUILD_CMDS
- $(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D)
+ $(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) shared-lib
endef
define GIFLIB_INSTALL_STAGING_CMDS
@@ -42,7 +42,7 @@ endef
define HOST_GIFLIB_INSTALL_CMDS
$(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) DESTDIR=$(HOST_DIR) \
- PREFIX=/usr install
+ PREFIX=/usr install-include install-shared-lib
endef
$(eval $(generic-package))
--
2.43.0
_______________________________________________
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/giflib: fix host build without convert
2024-03-31 16:43 [Buildroot] [PATCH 1/1] package/giflib: fix host build without convert Fabrice Fontaine
@ 2024-04-01 13:09 ` Yann E. MORIN
2024-04-28 19:35 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2024-04-01 13:09 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Bernd Kuhls, buildroot
Fabrice, All,
On 2024-03-31 18:43 +0200, Fabrice Fontaine spake thusly:
> Do not build docs for host-giflib to avoid the following build failure
> without convert on host raised since bump to version 5.2.2 in commit
> f98239dada59270efe19de9d9fae50ec9ab9d28c and
> https://sourceforge.net/p/giflib/code/ci/d565f6fa04be8973425bd7cd3f169908ac9e95c2:
>
> convert ../pic/gifgrid.gif -resize 50x50 giflib-logo.gif
> make[2]: convert: No such file or directory
>
> Fixes: f98239dada59270efe19de9d9fae50ec9ab9d28c
> - http://autobuild.buildroot.org/results/04dd54f5060881cb8aa030de34edb4ceea863fa6
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> package/giflib/giflib.mk | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/package/giflib/giflib.mk b/package/giflib/giflib.mk
> index 770338507b..f37ec8af21 100644
> --- a/package/giflib/giflib.mk
> +++ b/package/giflib/giflib.mk
> @@ -27,7 +27,7 @@ define GIFLIB_BUILD_CMDS
> endef
>
> define HOST_GIFLIB_BUILD_CMDS
> - $(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D)
> + $(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) shared-lib
> endef
>
> define GIFLIB_INSTALL_STAGING_CMDS
> @@ -42,7 +42,7 @@ endef
>
> define HOST_GIFLIB_INSTALL_CMDS
> $(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) DESTDIR=$(HOST_DIR) \
> - PREFIX=/usr install
> + PREFIX=/usr install-include install-shared-lib
> endef
>
> $(eval $(generic-package))
> --
> 2.43.0
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| 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. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
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/giflib: fix host build without convert
2024-03-31 16:43 [Buildroot] [PATCH 1/1] package/giflib: fix host build without convert Fabrice Fontaine
2024-04-01 13:09 ` Yann E. MORIN
@ 2024-04-28 19:35 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2024-04-28 19:35 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Bernd Kuhls, buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> Do not build docs for host-giflib to avoid the following build failure
> without convert on host raised since bump to version 5.2.2 in commit
> f98239dada59270efe19de9d9fae50ec9ab9d28c and
> https://sourceforge.net/p/giflib/code/ci/d565f6fa04be8973425bd7cd3f169908ac9e95c2:
> convert ../pic/gifgrid.gif -resize 50x50 giflib-logo.gif
> make[2]: convert: No such file or directory
> Fixes: f98239dada59270efe19de9d9fae50ec9ab9d28c
> - http://autobuild.buildroot.org/results/04dd54f5060881cb8aa030de34edb4ceea863fa6
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Committed to 2024.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
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:[~2024-04-28 19:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-31 16:43 [Buildroot] [PATCH 1/1] package/giflib: fix host build without convert Fabrice Fontaine
2024-04-01 13:09 ` Yann E. MORIN
2024-04-28 19:35 ` Peter Korsgaard
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.