[gedit] build: avoid the use of a variable
- From: Sébastien Wilmet <swilmet src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gedit] build: avoid the use of a variable
- Date: Thu, 5 Dec 2019 15:03:13 +0000 (UTC)
commit 03a2ad12d2d345bfbda2f9a53810620d0f35d88e
Author: Sébastien Wilmet <swilmet gnome org>
Date: Thu Dec 5 15:48:54 2019 +0100
build: avoid the use of a variable
get_option('plugins') is short enough.
meson.build | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
---
diff --git a/meson.build b/meson.build
index 58dcfba59..fe85212f1 100644
--- a/meson.build
+++ b/meson.build
@@ -111,8 +111,6 @@ if host_machine.system() == 'darwin'
endif
# Options
-build_plugins = get_option('plugins')
-
generate_gir = get_option('introspection')
if generate_gir and not introspection_dep.found()
generate_gir = false
@@ -137,9 +135,9 @@ endif
subdir('data')
subdir('po')
-
subdir('gedit')
-if build_plugins == true
+
+if get_option('plugins')
subdir('plugins')
endif
@@ -166,7 +164,7 @@ summary = [
' API docs: @0@'.format(get_option('gtk_doc')),
' User docs: @0@'.format(get_option('user_documentation')),
' Introspection: @0@'.format(generate_gir),
- ' Plugins: @0@'.format(build_plugins),
+ ' Plugins: @0@'.format(get_option('plugins')),
' Vala API: @0@'.format(generate_vapi),
'',
'Prefix: @0@'.format(get_option('prefix')),
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]