diff options
author | Mike Gilbert <floppym@gentoo.org> | 2014-03-02 23:37:39 -0500 |
---|---|---|
committer | Michael Biebl <biebl@debian.org> | 2014-03-03 06:27:10 +0100 |
commit | 8100c1a8f58b2fb5d97e156420a7e16562e93bc4 (patch) | |
tree | b7583053faba33f7619ef0b8e8e329f027bbcb12 | |
parent | 8f8f05a919355095518911135c3d630f4620a9b0 (diff) |
Fix systemd-stdio-bridge symlink
The symlink is created in bindir (/usr/bin), and points to a binary
which lives in rootlibexecdir (/lib/systemd or /usr/lib/systemd). A
relative symlink does not work here.
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 38445fb33c..e7134a25c9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1978,7 +1978,7 @@ systemd_bus_proxyd_LDADD = \ bus-proxyd-install-hook: $(AM_V_at)$(MKDIR_P) $(DESTDIR)$(bindir) - $(AM_V_LN)$(LN_S) -f ../lib/systemd/systemd-bus-proxyd $(DESTDIR)$(bindir)/systemd-stdio-bridge + $(AM_V_LN)$(LN_S) -f $(rootlibexecdir)/systemd-bus-proxyd $(DESTDIR)$(bindir)/systemd-stdio-bridge bus-proxyd-uninstall-hook: rm -f $(DESTDIR)$(bindir)/systemd-stdio-bridge |