summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 ; \