summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2017-09-08 21:29:42 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2017-09-08 21:29:42 -0400
commit860f47bfc21e2634d5a87af6b8e171d07f8aba62 (patch)
treec34137475831f9555aa4548b6d0faf2a43fba1b5 /Makefile
parent0607a0add0b3ac72169be53d072db48c31a018d7 (diff)
Makefile: set TimeoutStartSec=0 for sd versions < 229
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 01b739e..0479e05 100644
--- a/Makefile
+++ b/Makefile
@@ -3,8 +3,11 @@ rootprefix = $(prefix)
rootlibexecdir = $(rootprefix)/lib/systemd
systemunitdir=$(rootprefix)/lib/systemd/system
+systemd_version = $(shell systemctl --version|sed -n '1{s/\S*\s\s*//;s/\s.*//;p}')
+
TIMESYNCD_PATH = $(rootlibexecdir)/systemd-timesyncd
RM = /bin/rm
+INFINITY = $(shell if test $(systemd_version) -ge 229; then echo infinity; else echo 0; fi)
####
@@ -30,7 +33,7 @@ install: $(addprefix $(DESTDIR),$(files.sys.all))
$(outdir)/%: $(srcdir)/%.go
go build -o $@ $<
-vars = rootlibexecdir TIMESYNCD_PATH RM
+vars = rootlibexecdir TIMESYNCD_PATH RM INFINITY
$(outdir)/%: $(srcdir)/%.in
sed $(foreach v,$(vars),-e 's|@$v@|$($v)|g') < $< > $@