From: Jim Meyering Date: Sat, 1 Sep 2012 09:44:39 +0000 (+0200) Subject: build: restore handling of space-tainted build directory name X-Git-Tag: v8.20~92 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6a6257a96a7742d3f3af5d15300b7fccc599e34d;p=thirdparty%2Fcoreutils.git 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. --- 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 \