From 76cf10dab7a36653a159f0e87c46a13df494474f Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 5 May 2014 21:18:34 +0200 Subject: [PATCH] build-sys: move async.[ch] to src/shared So that we can use it at multiple places. --- Makefile.am | 6 +++--- src/{core => shared}/async.c | 0 src/{core => shared}/async.h | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename src/{core => shared}/async.c (100%) rename src/{core => shared}/async.h (100%) diff --git a/Makefile.am b/Makefile.am index 0232e7580..e4525a4f1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -798,7 +798,9 @@ libsystemd_shared_la_SOURCES = \ src/shared/clean-ipc.h \ src/shared/clean-ipc.c \ src/shared/login-shared.c \ - src/shared/login-shared.h + src/shared/login-shared.h \ + src/shared/async.c \ + src/shared/async.h nodist_libsystemd_shared_la_SOURCES = \ src/shared/errno-from-name.h \ @@ -1028,8 +1030,6 @@ libsystemd_core_la_SOURCES = \ src/core/killall.c \ src/core/audit-fd.c \ src/core/audit-fd.h \ - src/core/async.c \ - src/core/async.h \ src/core/show-status.c \ src/core/show-status.h diff --git a/src/core/async.c b/src/shared/async.c similarity index 100% rename from src/core/async.c rename to src/shared/async.c diff --git a/src/core/async.h b/src/shared/async.h similarity index 100% rename from src/core/async.h rename to src/shared/async.h -- 2.30.2