From 52e65ab1210f0e71f61b3f82d7f0426ad048be8f Mon Sep 17 00:00:00 2001 From: David Sterba Date: Tue, 3 Feb 2015 14:56:06 +0100 Subject: btrfs-progs: autoconf: use variable substitutions in doc makefile Signed-off-by: David Sterba --- Documentation/Makefile.in | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'Documentation/Makefile.in') diff --git a/Documentation/Makefile.in b/Documentation/Makefile.in index 9466710c..5ae1fca6 100644 --- a/Documentation/Makefile.in +++ b/Documentation/Makefile.in @@ -54,9 +54,10 @@ XMLTO = xmlto XMLTO_EXTRA = XMLTO_EXTRA = -m manpage-bold-literal.xsl GZIPCMD = gzip -INSTALL ?= install -RM ?= rm -LN_S ?= ln -s +INSTALL = @INSTALL@ +RM = @RM@ +RMDIR = @RMDIR@ +LN_S = @LN_S@ BTRFS_VERSION = $(shell sed -n 's/.*BTRFS_BUILD_VERSION "Btrfs \(.*\)"/\1/p'\ ../version.h) @@ -93,7 +94,7 @@ install-man: man uninstall: cd $(DESTDIR)$(man8dir); rm -f btrfs-check.8.gz $(GZ_MAN8) - rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(man8dir) + $(RMDIR) -p --ignore-fail-on-non-empty $(DESTDIR)$(man8dir) clean: $(QUIET_RM)$(RM) -f *.xml *.xml+ *.5 *.5.gz *.8 *.8.gz -- cgit v1.2.3