aboutsummaryrefslogtreecommitdiff
path: root/init.d/swclock.in
diff options
context:
space:
mode:
authorAndrew Gregory <andrew.gregory.8@gmail.com>2013-02-12 17:09:50 -0500
committerWilliam Hubbs <w.d.hubbs@gmail.com>2013-02-23 20:30:39 -0600
commit8a44067838e268db88ea2158258f8006cb1344b7 (patch)
treee04f4dd3248600cc82cb2b3a3c8f8eda7b49e90c /init.d/swclock.in
parent8c90042dee7cd0d7960c86b9fcfac5f1afec5784 (diff)
Fix shebangs in services to point to the correct location of runscript
SBINDIR and BINDIR can be set independently of PREFIX. This fixes broken shebangs in service files when SBINDIR is set to something other than PREFIX/sbin Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
Diffstat (limited to 'init.d/swclock.in')
-rw-r--r--init.d/swclock.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/init.d/swclock.in b/init.d/swclock.in
index 077f258d..465f76cf 100644
--- a/init.d/swclock.in
+++ b/init.d/swclock.in
@@ -1,4 +1,4 @@
-#!@PREFIX@/sbin/runscript
+#!@SBINDIR@/runscript
# Copyright (c) 2009 Roy Marples <roy@marples.name>
# Released under the 2-clause BSD license.
@@ -17,7 +17,7 @@ start()
{
ebegin "Setting the local clock based on last shutdown time"
if ! swclock 2> /dev/null; then
- swclock --warn @PREFIX@/sbin/runscript
+ swclock --warn @SBINDIR@/runscript
fi
eend $?
}