diff options
author | Jim Meyering <meyering@redhat.com> | 2012-09-01 11:44:39 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2012-09-01 21:28:13 +0200 |
commit | 6a6257a96a7742d3f3af5d15300b7fccc599e34d (patch) | |
tree | 9175a855c1bd962bb474b35fd4cec5a4ae45f60a /man/local.mk | |
parent | 11d63860bda74db0af03dc238b81632656f72e67 (diff) | |
download | coreutils-6a6257a96a7742d3f3af5d15300b7fccc599e34d.tar.xz |
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.
Diffstat (limited to 'man/local.mk')
-rw-r--r-- | man/local.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man/local.mk b/man/local.mk index 98cc4fd15..1c8ecfaad 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 \ |