From: Zbigniew Jędrzejewski-Szmek Date: Tue, 31 May 2022 09:34:05 +0000 (+0200) Subject: Move basic/recovery-key.* to shared/ X-Git-Tag: v252-rc1~885 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=af72f975fe61c2ec0bfeb382939b591d4c754165;p=thirdparty%2Fsystemd.git Move basic/recovery-key.* to shared/ No particular reason to have it in basic/. We should let homectl and other users share the single copy through libsystemd-shared. --- diff --git a/src/basic/meson.build b/src/basic/meson.build index 9b89fdcdea0..7b5a6f9cfe9 100644 --- a/src/basic/meson.build +++ b/src/basic/meson.build @@ -194,8 +194,6 @@ basic_sources = files( 'ratelimit.h', 'raw-clone.h', 'raw-reboot.h', - 'recovery-key.c', - 'recovery-key.h', 'recurse-dir.c', 'recurse-dir.h', 'replace-var.c', diff --git a/src/shared/meson.build b/src/shared/meson.build index 1d4e4a07c04..1ddbfac6777 100644 --- a/src/shared/meson.build +++ b/src/shared/meson.build @@ -266,6 +266,8 @@ shared_sources = files( 'quota-util.h', 'reboot-util.c', 'reboot-util.h', + 'recovery-key.c', + 'recovery-key.h', 'resize-fs.c', 'resize-fs.h', 'resolve-util.c', diff --git a/src/basic/recovery-key.c b/src/shared/recovery-key.c similarity index 100% rename from src/basic/recovery-key.c rename to src/shared/recovery-key.c diff --git a/src/basic/recovery-key.h b/src/shared/recovery-key.h similarity index 100% rename from src/basic/recovery-key.h rename to src/shared/recovery-key.h