From 25ee45f9953c121fc26a54a85ad7bb3a3180152b Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Mon, 4 Mar 2013 01:38:16 +0100 Subject: build-sys: replace backticks `` with $() for consistencies sake use $() everywhere --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.am') 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" -- cgit v1.2.3-54-g00ecf