From 1d21a7bd99513afa07ee73989d71d1b0b9b03565 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Fri, 23 Jun 2023 11:00:17 +0900 Subject: [PATCH] meson: move declarations of arrays --- meson.build | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/meson.build b/meson.build index 19a441bfb72..379eeda9e42 100644 --- a/meson.build +++ b/meson.build @@ -1919,14 +1919,6 @@ conf.set10('SYSTEMD_SLOW_TESTS_DEFAULT', slow_tests) ############################################################ -tests = [] -simple_tests = [] -fuzzers = [] -simple_fuzzers = [] -catalogs = [] - -############################################################ - pymod = import('python') python = pymod.find_installation('python3', required : true, modules : ['jinja2']) python_39 = python.language_version().version_compare('>=3.9') @@ -2177,6 +2169,12 @@ man_page_depends = [] ############################################################ +tests = [] +simple_tests = [] +fuzzers = [] +simple_fuzzers = [] +catalogs = [] + # binaries that have --help and are intended for use by humans, # usually, but not always, installed in /bin. public_programs = [] -- 2.47.3