rename stdio-bridge to bus-proxyd

This commit is contained in:
Kay Sievers 2013-11-29 21:54:44 +01:00
parent 219728b31b
commit f252ff1742
4 changed files with 13 additions and 5 deletions

2
.gitignore vendored
View File

@ -76,7 +76,7 @@
/systemd-shutdown /systemd-shutdown
/systemd-shutdownd /systemd-shutdownd
/systemd-sleep /systemd-sleep
/systemd-stdio-bridge /systemd-bus-proxyd
/systemd-sysctl /systemd-sysctl
/systemd-system-update-generator /systemd-system-update-generator
/systemd-timedated /systemd-timedated

View File

@ -302,7 +302,6 @@ rootbin_PROGRAMS = \
bin_PROGRAMS = \ bin_PROGRAMS = \
systemd-cgls \ systemd-cgls \
systemd-cgtop \ systemd-cgtop \
systemd-stdio-bridge \
systemd-nspawn \ systemd-nspawn \
systemd-detect-virt \ systemd-detect-virt \
systemd-delta \ systemd-delta \
@ -329,6 +328,7 @@ rootlibexec_PROGRAMS = \
systemd-ac-power \ systemd-ac-power \
systemd-sysctl \ systemd-sysctl \
systemd-sleep \ systemd-sleep \
systemd-bus-proxyd \
systemd-socket-proxyd systemd-socket-proxyd
systemgenerator_PROGRAMS = \ systemgenerator_PROGRAMS = \
@ -1859,15 +1859,23 @@ systemd_run_LDADD = \
libsystemd-shared.la libsystemd-shared.la
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
systemd_stdio_bridge_SOURCES = \ systemd_bus_proxyd_SOURCES = \
src/stdio-bridge/stdio-bridge.c src/bus-proxyd/bus-proxyd.c
systemd_stdio_bridge_LDADD = \ systemd_bus_proxyd_LDADD = \
libsystemd-bus-internal.la \ libsystemd-bus-internal.la \
libsystemd-daemon-internal.la \ libsystemd-daemon-internal.la \
libsystemd-id128-internal.la \ libsystemd-id128-internal.la \
libsystemd-shared.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 = \ systemd_tty_ask_password_agent_SOURCES = \
src/tty-ask-password-agent/tty-ask-password-agent.c src/tty-ask-password-agent/tty-ask-password-agent.c