From f252ff1742947afaf035ae133876a4e767ddeb7c Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Fri, 29 Nov 2013 21:54:44 +0100 Subject: [PATCH] rename stdio-bridge to bus-proxyd --- .gitignore | 2 +- Makefile.am | 16 ++++++++++++---- src/{stdio-bridge => bus-proxyd}/Makefile | 0 .../stdio-bridge.c => bus-proxyd/bus-proxyd.c} | 0 4 files changed, 13 insertions(+), 5 deletions(-) rename src/{stdio-bridge => bus-proxyd}/Makefile (100%) rename src/{stdio-bridge/stdio-bridge.c => bus-proxyd/bus-proxyd.c} (100%) diff --git a/.gitignore b/.gitignore index 84c83a556..19bbceb43 100644 --- a/.gitignore +++ b/.gitignore @@ -76,7 +76,7 @@ /systemd-shutdown /systemd-shutdownd /systemd-sleep -/systemd-stdio-bridge +/systemd-bus-proxyd /systemd-sysctl /systemd-system-update-generator /systemd-timedated diff --git a/Makefile.am b/Makefile.am index 3598edd26..adf92c03d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -302,7 +302,6 @@ rootbin_PROGRAMS = \ bin_PROGRAMS = \ systemd-cgls \ systemd-cgtop \ - systemd-stdio-bridge \ systemd-nspawn \ systemd-detect-virt \ systemd-delta \ @@ -329,6 +328,7 @@ rootlibexec_PROGRAMS = \ systemd-ac-power \ systemd-sysctl \ systemd-sleep \ + systemd-bus-proxyd \ systemd-socket-proxyd systemgenerator_PROGRAMS = \ @@ -1859,15 +1859,23 @@ systemd_run_LDADD = \ libsystemd-shared.la # ------------------------------------------------------------------------------ -systemd_stdio_bridge_SOURCES = \ - src/stdio-bridge/stdio-bridge.c +systemd_bus_proxyd_SOURCES = \ + src/bus-proxyd/bus-proxyd.c -systemd_stdio_bridge_LDADD = \ +systemd_bus_proxyd_LDADD = \ libsystemd-bus-internal.la \ libsystemd-daemon-internal.la \ libsystemd-id128-internal.la \ libsystemd-shared.la +bus-proxyd-install-hook: + $(AM_V_LN)$(LN_S) -f ../../lib/systemd/systemd-bus-proxyd $(DESTDIR)$(bindir)/systemd-stdio-bridge + +bus-proxyd-uninstall-hook: + rm -f $(DESTDIR)$(bindir)/systemd-stdio-bridge + +INSTALL_EXEC_HOOKS += bus-proxyd-install-hook +UNINSTALL_EXEC_HOOKS += bus-proxyd-uninstall-hook # ------------------------------------------------------------------------------ systemd_tty_ask_password_agent_SOURCES = \ src/tty-ask-password-agent/tty-ask-password-agent.c diff --git a/src/stdio-bridge/Makefile b/src/bus-proxyd/Makefile similarity index 100% rename from src/stdio-bridge/Makefile rename to src/bus-proxyd/Makefile diff --git a/src/stdio-bridge/stdio-bridge.c b/src/bus-proxyd/bus-proxyd.c similarity index 100% rename from src/stdio-bridge/stdio-bridge.c rename to src/bus-proxyd/bus-proxyd.c -- 2.30.2