[systemd-commits] Makefile.am

Michael Biebl mbiebl at kemper.freedesktop.org
Sun Mar 2 22:02:26 PST 2014


 Makefile.am |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8100c1a8f58b2fb5d97e156420a7e16562e93bc4
Author: Mike Gilbert <floppym at gentoo.org>
Date:   Sun Mar 2 23:37:39 2014 -0500

    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.

diff --git a/Makefile.am b/Makefile.am
index 38445fb..e7134a2 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



More information about the systemd-commits mailing list