summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-06-29 09:29:19 +0100
committerJoe Carstairs <me@joeac.net>2026-06-29 09:29:19 +0100
commitdc9694fb328ed6fef2afb8c4a265cacfc2048668 (patch)
tree832038d3e04cce0329f3d0ef528da18594f2a9b4 /Makefile
parent70a155a0a763b52417d827baa3dbe1dc88bab975 (diff)
Makefile: realpath ~ instead of realpath ~/.config/.. which may not exist
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7fdc364..3d3206d 100644
--- a/Makefile
+++ b/Makefile
@@ -48,7 +48,7 @@ define install_module_rule =
install_$(module): ~/.config/rc/init.d/joeac.net ~/.config/rc/init.d/joeac.net.$(module) $(nginx_module_target)
~/.config/rc/init.d/joeac.net.$(module): ~/.config/rc/init.d/joeac.net ~/.config/rc/runlevels/default
- ln -s $(shell realpath ~/.config/rc/init.d/joeac.net) ~/.config/rc/init.d/joeac.net.$(module)
+ ln -s $(shell realpath ~)/.config/rc/init.d/joeac.net) ~/.config/rc/init.d/joeac.net.$(module)
rc-update -U add joeac.net.$(module) default
rc-service -U joeac.net.$(module) start
endef