From 6a6257a96a7742d3f3af5d15300b7fccc599e34d Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 1 Sep 2012 11:44:39 +0200 Subject: [PATCH] build: restore handling of space-tainted build directory name * man/local.mk: With commit v8.19-84-g08cf455, man page creation would fail when using a build directory name containing e.g., spaces. --- man/local.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/local.mk b/man/local.mk index 98cc4fd152..1c8ecfaad1 100644 --- a/man/local.mk +++ b/man/local.mk @@ -181,7 +181,7 @@ man/yes.1: src/yes && t=$*.td \ && rm -rf $$t \ && $(MKDIR_P) $$t \ - && (cd $$t && $(LN_S) $(abs_top_builddir)/src/$$prog $$name) \ + && (cd $$t && $(LN_S) '$(abs_top_builddir)/src/'$$prog $$name) \ && $(PERL) -- $(srcdir)/man/help2man \ --source='$(PACKAGE_STRING)' \ --include=$(srcdir)/man/$$name.x \ -- 2.47.2