[network-manager-applet] meson: drop 'install' argument from configure_file()



commit d929a3097a3d343f69df4d2907a631c92441f062
Author: Beniamino Galvani <bgalvani redhat com>
Date:   Fri Sep 20 15:25:52 2019 +0200

    meson: drop 'install' argument from configure_file()
    
    It was added in meson 0.50 while we require 0.46. Furthermore it
    defaults to true when a install directory is specified and so it can
    be omitted.
    
    https://gitlab.gnome.org/GNOME/network-manager-applet/issues/70

 man/meson.build | 1 -
 meson.build     | 1 -
 src/meson.build | 1 -
 3 files changed, 3 deletions(-)
---
diff --git a/man/meson.build b/man/meson.build
index 5a237ab2..22a123ee 100644
--- a/man/meson.build
+++ b/man/meson.build
@@ -12,7 +12,6 @@ foreach man: mans
   configure_file(
     input: man + '.in',
     output: man,
-    install: true,
     install_dir: man1_dir,
     configuration: man_subst,
   )
diff --git a/meson.build b/meson.build
index 2157a4b0..62e2da3a 100644
--- a/meson.build
+++ b/meson.build
@@ -447,7 +447,6 @@ schema = 'org.gnome.nm-applet.gschema.xml'
 configure_file(
   input: schema + '.in',
   output: schema,
-  install: true,
   install_dir: join_paths(nma_datadir, 'glib-2.0', 'schemas'),
   configuration: schema_conf
 )
diff --git a/src/meson.build b/src/meson.build
index cd5c9368..761cfb43 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -17,7 +17,6 @@ version_header = configure_file(
   input: 'libnma/' + version + '.in',
   output: version,
   configuration: version_conf,
-  install: true,
   install_dir: join_paths(nma_includedir, 'libnma')
 )
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]