Re: [PATCH 05/16] Makefile: correct "GIT-PERL-{DEFINES,HEADER}" dependency graph
From: Eric Sunshine <hidden>
Date: 2021-11-07 01:51:25
On Sat, Nov 6, 2021 at 5:03 PM Ævar Arnfjörð Bjarmason [off-list ref] wrote:
Fix several small issues with the dependency graph of the generated "GIT-PERL-DEFINES" and "GIT-PERL-HEADER" files: 1. Folllow-up my 4070c9e09fc (Makefile: don't re-define PERL_DEFINES, 2021-05-05) and move the rest of the assignments to PERL_DEFINES to one place, and change it from depending on "localedir_relative_SQ" instead of "localedir". The former is what we'll actually use, and while it's unlikely to matter in practice (we'd just skip re-building these under RUNTIME_PREFIX if the relative path was the same) it makes it clearer what's going on here by bringing us to a 1=1 mapping of these variables and what's subsequently used in the "GIT-PERL-DEFINES", "GIT-PERL-HEADER" and "perl/build/lib/%.pm" rules below. 2. We don't need the substitution of " " for ":" added in 07d90eadb50 (Makefile: add Perl runtime prefix support, 2018-04-10), let's drop it. This doesn't matter for the correctness of these files, but makes it clear that (unlike GIT-BUILD-OPTIONS) they are not
Too many spaces between "clear" and "that". Is the last sentence of this paragraph incomplete?
3. Don't have "GIT-PERL-HEADER" depend on the "Makefile". That was a lazy way to over-declare the dependencies added in f6a0ad4be71 (Makefile: generate Perl header from template file, 2018-04-10), now that our dependency graph is correct we can be confident in dropping it. Signed-off-by: Ævar Arnfjörð Bjarmason <redacted>