summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRobin KAY <komadori@users.sourceforge.net>2006-06-16 14:38:59 +0000
committerRobin KAY <komadori@users.sourceforge.net>2006-06-16 14:38:59 +0000
commita47f0dd07be357af27afe972a6c426f0a33ab4e5 (patch)
tree356bb2e2b410962a0362d8cbae9b2d17991a3549 /doc
parent4a0da3d3e71cc77c98ce66528234d908228cf8ef (diff)
downloadxine-lib-a47f0dd07be357af27afe972a6c426f0a33ab4e5.tar.gz
xine-lib-a47f0dd07be357af27afe972a6c426f0a33ab4e5.tar.bz2
Put quotes around `pwd` in case the working directory contains a space.
CVS patchset: 8043 CVS date: 2006/06/16 14:38:59
Diffstat (limited to 'doc')
-rw-r--r--doc/faq/Makefile.am2
-rw-r--r--doc/hackersguide/Makefile.am2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/faq/Makefile.am b/doc/faq/Makefile.am
index 3991c3be9..3dcbe44e5 100644
--- a/doc/faq/Makefile.am
+++ b/doc/faq/Makefile.am
@@ -11,7 +11,7 @@ docs: $(docs_DATA)
distclean-local: clean-docs
docs-prepare: $(srcdir)/faq.sgml
- if test "$(srcdir)" != "." -a "$(srcdir)" != `pwd`; then \
+ if test "$(srcdir)" != "." -a "$(srcdir)" != "`pwd`"; then \
test -f ./faq.sgml -a ./faq.sgml -nt $(srcdir)/faq.sgml || cp $^ . ; \
fi
diff --git a/doc/hackersguide/Makefile.am b/doc/hackersguide/Makefile.am
index 91c1b901f..086b7a67a 100644
--- a/doc/hackersguide/Makefile.am
+++ b/doc/hackersguide/Makefile.am
@@ -25,7 +25,7 @@ docs: $(docs_DATA)
distclean-local: clean-docs
docs-prepare: $(addprefix $(srcdir)/, $(hackersguide_sgml))
- if test "$(srcdir)" != "." -a "$(srcdir)" != `pwd`; then \
+ if test "$(srcdir)" != "." -a "$(srcdir)" != "`pwd`"; then \
for file in $(hackersguide_sgml) ; do \
test -f ./$$file -a ./$$file -nt $(srcdir)/$$file || cp $(srcdir)/$$file .; \
done ; \