summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2013-03-04 01:38:16 +0100
committerMichael Biebl <biebl@debian.org>2013-03-04 01:46:03 +0100
commit25ee45f9953c121fc26a54a85ad7bb3a3180152b (patch)
tree46883422214a06c986f7c7b4971987592168bdf4 /Makefile.am
parentdb059f1b031a92ed45b62d1036877abd9c128d1b (diff)
build-sys: replace backticks `` with $()
for consistencies sake use $() everywhere
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index f18cccd070..5453868f82 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -3504,7 +3504,7 @@ sphinx-%:
$(AM_V_at)echo Output has been generated in $(abs_top_builddir)/man/python-systemd/
destdir-sphinx: all
- dir="`mktemp -d /tmp/systemd-install.XXXXXX`" && \
+ dir="$(mktemp -d /tmp/systemd-install.XXXXXX)" && \
$(MAKE) DESTDIR="$$dir" install && \
$(MAKE) DESTDIR="$$dir" sphinx-html && \
rm -rf "$$dir"