From: Lennart Poettering Date: Sun, 23 Dec 2012 10:27:20 +0000 (+0100) Subject: shared: move fdset.c from core/ to shared/ since it is used by more than the core now X-Git-Tag: v197~102 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=f934051c4d17d167bd8e46dd3c70a745e26fd2eb shared: move fdset.c from core/ to shared/ since it is used by more than the core now --- diff --git a/Makefile.am b/Makefile.am index 65055b3fb..165b85dea 100644 --- a/Makefile.am +++ b/Makefile.am @@ -801,6 +801,8 @@ libsystemd_shared_la_SOURCES = \ src/shared/hashmap.h \ src/shared/set.c \ src/shared/set.h \ + src/shared/fdset.c \ + src/shared/fdset.h \ src/shared/strv.c \ src/shared/strv.h \ src/shared/strbuf.c \ @@ -1057,8 +1059,6 @@ libsystemd_core_la_SOURCES = \ src/core/mount-setup.h \ src/core/loopback-setup.h \ src/core/loopback-setup.c \ - src/core/fdset.c \ - src/core/fdset.h \ src/core/condition.c \ src/core/condition.h \ src/core/namespace.c \ @@ -1670,9 +1670,7 @@ systemd_nspawn_SOURCES = \ src/core/mount-setup.c \ src/core/mount-setup.h \ src/core/loopback-setup.c \ - src/core/loopback-setup.h \ - src/core/fdset.c \ - src/core/fdset.h + src/core/loopback-setup.h systemd_nspawn_LDADD = \ libsystemd-label.la \ diff --git a/src/core/fdset.c b/src/shared/fdset.c similarity index 100% rename from src/core/fdset.c rename to src/shared/fdset.c diff --git a/src/core/fdset.h b/src/shared/fdset.h similarity index 100% rename from src/core/fdset.h rename to src/shared/fdset.h