[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] build: Include grub-core/extra_deps.lst in dist
From: |
Oliver Steffen |
Subject: |
Re: [PATCH] build: Include grub-core/extra_deps.lst in dist |
Date: |
Thu, 21 Dec 2023 03:02:19 -0800 |
User-agent: |
alot/0.8.1 |
Quoting Oskari Pirhonen (2023-12-21 08:17:35)
> Fixes build failure due to the extra_deps.lst file not existing in the
> tarball. Found while trying to package GRUB 2.12 for Gentoo.
>
> make[3]: *** No rule to make target
> '/var/tmp/portage/sys-boot/grub-2.12/work/grub-2.12/grub-core/extra_deps.lst',
> needed by 'syminfo.lst'. Stop.
>
> Fixes: 89fbe0cac (grub-core/Makefile.am: Make path to extra_deps.lst relative
> to $(top_srcdir)/grub-core)
> Fixes: 154dcb1ae (build: Allow explicit module dependencies)
>
> Signed-off-by: Oskari Pirhonen <xxc3ncoredxx@gmail.com>
> ---
> conf/Makefile.extra-dist | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/conf/Makefile.extra-dist b/conf/Makefile.extra-dist
> index 5e7126f98..0bef2c752 100644
> --- a/conf/Makefile.extra-dist
> +++ b/conf/Makefile.extra-dist
> @@ -27,6 +27,7 @@ EXTRA_DIST += grub-core/gensyminfo.sh.in
> EXTRA_DIST += grub-core/gensymlist.sh
> EXTRA_DIST += grub-core/genemuinit.sh
> EXTRA_DIST += grub-core/genemuinitheader.sh
> +EXTRA_DIST += grub-core/extra_deps.lst
>
> EXTRA_DIST += grub-core/lib/gnulib-patches/fix-width.patch
>
> --
> 2.41.0
>
Looks good to me and seems to fix the issue.
Oliver