Makefile: don't re-define PERL_DEFINES
commit4070c9e09fc4295e5b2f8a7cbb5bae1936fdeef8
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Wed, 5 May 2021 12:21:38 +0000 (5 14:21 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 6 May 2021 03:58:27 +0000 (6 12:58 +0900)
treeab1d365fb84d1c8f83b5a143df9dd8fdd8f9b103
parent7e391989789db82983665667013a46eabc6fc570
Makefile: don't re-define PERL_DEFINES

Since 07d90eadb50 (Makefile: add Perl runtime prefix support,
2018-04-10) we have been declaring PERL_DEFINES right after assigning
to it, with the effect that the first PERL_DEFINES was ignored.

That bug didn't matter in practice since the first line had all the
same variables as the second, so we'd correctly re-generate
everything. It just made for confusing reading.

Let's remove that first assignment, and while we're at it split these
across lines to make them more maintainable.

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Makefile