diff options
author | Robin KAY <komadori@users.sourceforge.net> | 2006-06-16 14:38:59 +0000 |
---|---|---|
committer | Robin KAY <komadori@users.sourceforge.net> | 2006-06-16 14:38:59 +0000 |
commit | a47f0dd07be357af27afe972a6c426f0a33ab4e5 (patch) | |
tree | 356bb2e2b410962a0362d8cbae9b2d17991a3549 | |
parent | 4a0da3d3e71cc77c98ce66528234d908228cf8ef (diff) | |
download | xine-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
-rw-r--r-- | doc/faq/Makefile.am | 2 | ||||
-rw-r--r-- | doc/hackersguide/Makefile.am | 2 |
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 ; \ |