[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v2] scripts/git.orderfile: Display meson files along with bui
From: |
Laszlo Ersek |
Subject: |
Re: [PATCH v2] scripts/git.orderfile: Display meson files along with buildsys ones |
Date: |
Tue, 8 Sep 2020 12:02:24 +0200 |
On 09/07/20 18:12, Philippe Mathieu-Daudé wrote:
> Since commit a56650518f5 ("configure: integrate Meson in the build
> system") we replaced many Makefile by Meson files. Adapt the
> git.orderfile script to display the new file at the same position.
>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
> scripts/git.orderfile | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/scripts/git.orderfile b/scripts/git.orderfile
> index 73fd818d7f3..a021afc2d51 100644
> --- a/scripts/git.orderfile
> +++ b/scripts/git.orderfile
> @@ -18,6 +18,7 @@ docs/*
> configure
> Makefile*
> *.mak
> +meson.build
>
> # qapi schema
> qapi/*.json
>
Possibly related (not sure if there's another patch pending for it
already): if you run a "make clean" in the source tree, and have the
Meson submodule initialized, the "make clean" will delete files from the
Meson submodule.
find . \( -name '*.so' -o -name '*.dll' -o -name '*.[oda]' \) -type f \
"*.d" matches various meson files.
(Again, apologies if this is already known; I understand this is
probably the worst context to report his in...)
Thanks
Laszlo