From a1ca52c2daf9d5f6f6922a627793dc2cbd0ad20c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Tue, 26 Sep 2023 17:03:15 +0200 Subject: [PATCH] meson: add comments to compat symlinks --- meson.build | 1 + src/resolve/meson.build | 1 + 2 files changed, 2 insertions(+) diff --git a/meson.build b/meson.build index df506b78735..3d161bc996d 100644 --- a/meson.build +++ b/meson.build @@ -2416,6 +2416,7 @@ ukify = custom_target( if want_ukify public_programs += ukify + # symlink for backwards compatibility after rename meson.add_install_script(sh, '-c', ln_s.format(bindir / 'ukify', libexecdir / 'ukify')) diff --git a/src/resolve/meson.build b/src/resolve/meson.build index 0f62d09087b..2c34dc50322 100644 --- a/src/resolve/meson.build +++ b/src/resolve/meson.build @@ -225,6 +225,7 @@ if conf.get('ENABLE_RESOLVE') == 1 ln_s.format(bindir / 'resolvectl', sbindir / 'resolvconf')) + # symlink for backwards compatibility after rename meson.add_install_script(sh, '-c', ln_s.format(bindir / 'resolvectl', bindir / 'systemd-resolve'))