From 4995813b6ef1f074a90a60a7ae10d974397ab129 Mon Sep 17 00:00:00 2001 From: Justin Reichardt Date: Mon, 13 Jun 2022 00:11:02 -0500 Subject: [PATCH] Corrected sym link location for systemd files They were missing a "/" --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index f1dbd84..0d1ef33 100644 --- a/Makefile +++ b/Makefile @@ -33,13 +33,13 @@ install: build install -D $(PROJROOT)build/bin/rhosts $(BINDIR)/ cp -r $(PROJROOT)build/share/rhosts $(DATADIR) if [ ! -h /usr/lib/systemd/system/rhosts.service ]; then \ - ln -s $(DATADIR)rhosts/systemd/rhosts.service /usr/lib/systemd/system/rhosts.service \ + ln -s $(DATADIR)/rhosts/systemd/rhosts.service /usr/lib/systemd/system/rhosts.service \ ;fi if [ ! -h /usr/lib/systemd/system/rhosts.path ]; then \ - ln -s $(DATADIR)rhosts/systemd/rhosts.path /usr/lib/systemd/system/rhosts.path \ + ln -s $(DATADIR)/rhosts/systemd/rhosts.path /usr/lib/systemd/system/rhosts.path \ ;fi if [ ! -h /usr/lib/systemd/system/rhosts.timer ]; then \ - ln -s $(DATADIR)rhosts/systemd/rhosts.timer /usr/lib/systemd/system/rhosts.timer \ + ln -s $(DATADIR)/rhosts/systemd/rhosts.timer /usr/lib/systemd/system/rhosts.timer \ ;fi .PHONY: uninstall uninstall: