[gnome-settings-daemon/benzea/systemd-3-36: 45/45] plugins: Mask old target names on non-release builds



commit 7314fc054033fd403067af5ba60ec1d8c42b2617
Author: Benjamin Berg <bberg redhat com>
Date:   Fri Feb 14 19:09:10 2020 +0100

    plugins: Mask old target names on non-release builds
    
    This means we cannot accidentally start the old targets in case they
    exist on the host system. It is solely useful when using jhbuild to run
    a test session and is disabled on release builds for that reason.

 plugins/meson.build | 8 ++++++++
 1 file changed, 8 insertions(+)
---
diff --git a/plugins/meson.build b/plugins/meson.build
index 809851c5..ff104e74 100644
--- a/plugins/meson.build
+++ b/plugins/meson.build
@@ -161,6 +161,14 @@ foreach plugin: all_plugins
                 install_dir: systemd_userunitdir
             )
 
+            # Wipe out old target names in non-release builds; this saves a lot
+            # of pain when running a new g-s-d inside jhbuild on an old host
+            # TODO: Should be deleted once we can assume developers have 3.38
+            #       installed on their machines.
+            if get_option('buildtype') != 'release'
+                meson.add_install_script('ln', '-vfs', '/dev/null', systemd_userunitdir / 
'gsd-@0@.target'.format(plugin_name))
+            endif
+
             foreach target: gates_all
                 meson.add_install_script('meson-add-wants.sh', systemd_userunitdir, target + '.wants/', 
user_service)
             endforeach


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