Refactor a multi-line assignment into a form that'll lend itself better to having "ifdef" split it up in a follow-up commit. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@xxxxxxxxx> --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 4edfda3e009..36c7b8fa08b 100644 --- a/Makefile +++ b/Makefile @@ -656,10 +656,10 @@ clean-perl-script: clean-python-script: $(RM) $(SCRIPT_PYTHON_GEN) -SCRIPTS = $(SCRIPT_SH_GEN) \ - $(SCRIPT_PERL_GEN) \ - $(SCRIPT_PYTHON_GEN) \ - git-instaweb +SCRIPTS = $(SCRIPT_SH_GEN) +SCRIPTS += $(SCRIPT_PERL_GEN) +SCRIPTS += $(SCRIPT_PYTHON_GEN) +SCRIPTS += git-instaweb ETAGS_TARGET = TAGS -- 2.29.2.222.g5d2a92d10f8