Skip to content

Commit 66962c8

Browse files
authored
Revert "build: disable gir install via list to pacify meson >= 0.60.2 (#98)" (#100)
This reverts commit a4f6cfc. This commit was wrong, because it tried to work around a bug in a single version of meson by using something that isn't, wasn't, and won't be a valid value. The fixed version of meson 0.60.x has been out for a while now, which once again accepts `false`, and 0.61.0 also accepts `false` but was known at the time of this workaround to not work in meson-git master (now meson 0.61.0). Using `false` is acceptable and the failure to accept it has been qualified as a meson regression. Using `[false]` is just... trying to fuzz meson with random objects until you get something that slips its way through the argument checker and produces desired effects on the python implementation level.
1 parent a4f6cfc commit 66962c8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

installed-tests/js/meson.build

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ regress_gir = gnome.generate_gir(libregress, includes: regress_gir_includes,
4848
sources: regress_sources, namespace: 'Regress', nsversion: '1.0',
4949
identifier_prefix: 'Regress', symbol_prefix: 'regress_',
5050
extra_args: ['--warn-all', '--warn-error'] + regress_gir_c_args,
51-
install: get_option('installed_tests'), install_dir_gir: [false],
51+
install: get_option('installed_tests'), install_dir_gir: false,
5252
install_dir_typelib: installed_tests_execdir)
5353
regress_typelib = regress_gir[1]
5454

@@ -66,7 +66,7 @@ libwarnlib = library('warnlib', warnlib_sources,
6666
warnlib_gir = gnome.generate_gir(libwarnlib, includes: ['Gio-2.0'],
6767
sources: warnlib_sources, namespace: 'WarnLib', nsversion: '1.0',
6868
symbol_prefix: 'warnlib_', header: 'warnlib.h',
69-
install: get_option('installed_tests'), install_dir_gir: [false],
69+
install: get_option('installed_tests'), install_dir_gir: false,
7070
install_dir_typelib: installed_tests_execdir)
7171
warnlib_typelib = warnlib_gir[1]
7272

@@ -82,7 +82,7 @@ gimarshallingtests_gir = gnome.generate_gir(libgimarshallingtests,
8282
includes: ['Gio-2.0'], sources: gimarshallingtests_sources,
8383
namespace: 'GIMarshallingTests', nsversion: '1.0',
8484
symbol_prefix: 'gi_marshalling_tests_', extra_args: '--warn-error',
85-
install: get_option('installed_tests'), install_dir_gir: [false],
85+
install: get_option('installed_tests'), install_dir_gir: false,
8686
install_dir_typelib: installed_tests_execdir)
8787
gimarshallingtests_typelib = gimarshallingtests_gir[1]
8888

meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ gjs_private_gir = gnome.generate_gir(libgjs,
542542
includes: ['GObject-2.0', 'Gio-2.0'], sources: libgjs_private_sources,
543543
namespace: 'CjsPrivate', nsversion: '1.0', identifier_prefix: 'Gjs',
544544
symbol_prefix: 'gjs_', extra_args: '--warn-error', install: true,
545-
install_dir_gir: [false], install_dir_typelib: pkglibdir / 'girepository-1.0')
545+
install_dir_gir: false, install_dir_typelib: pkglibdir / 'girepository-1.0')
546546
gjs_private_typelib = gjs_private_gir[1]
547547

548548
### Build gjs-console interpreter ##############################################

0 commit comments

Comments
 (0)