summaryrefslogtreecommitdiff
path: root/doc/faq
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2004-08-16 15:18:37 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2004-08-16 15:18:37 +0000
commit91d34cd5ca416b490421584e569f40bedb89caf1 (patch)
treed771d7d38578067a1ae1756babbaf196c53536ec /doc/faq
parent6c999d2c335f1eb7e178495cff82cd8d692e3df1 (diff)
downloadxine-lib-91d34cd5ca416b490421584e569f40bedb89caf1.tar.gz
xine-lib-91d34cd5ca416b490421584e569f40bedb89caf1.tar.bz2
fix indentation and readd the "sleep 1" because we must ensure that the
source is newer than the target to enforce rebuilding once the tools have been installed CVS patchset: 6883 CVS date: 2004/08/16 15:18:37
Diffstat (limited to 'doc/faq')
-rw-r--r--doc/faq/Makefile.am34
1 files changed, 18 insertions, 16 deletions
diff --git a/doc/faq/Makefile.am b/doc/faq/Makefile.am
index f534d867a..f5d768cf0 100644
--- a/doc/faq/Makefile.am
+++ b/doc/faq/Makefile.am
@@ -23,28 +23,30 @@ faq.sgml: $(srcdir)/faq.sgml
if HAVE_SGMLTOOLS
faq.html: faq.sgml
- $(SGMLTOOLS) -b onehtml faq.sgml;
+ $(SGMLTOOLS) -b onehtml faq.sgml;
else
faq.html: faq.sgml
- if test x"$(fail_if_missing)" = x"yes"; then \
- echo "Please install sgmltools-lite."; \
- exit 1; \
- else \
- touch $@; \
- touch $^; \
- fi
+ if test x"$(fail_if_missing)" = x"yes"; then \
+ echo "Please install sgmltools-lite."; \
+ exit 1; \
+ else \
+ touch $@; \
+ sleep 1; \
+ touch $^; \
+ fi
endif
if HAVE_SGMLTOOLS
faq.txt: faq.sgml
- $(SGMLTOOLS) -b txt faq.sgml;
+ $(SGMLTOOLS) -b txt faq.sgml;
else
faq.txt: faq.sgml
- if test x"$(fail_if_missing)" = x"yes"; then \
- echo "Please install sgmltools-lite."; \
- exit 1; \
- else \
- touch $@; \
- touch $^; \
- fi
+ if test x"$(fail_if_missing)" = x"yes"; then \
+ echo "Please install sgmltools-lite."; \
+ exit 1; \
+ else \
+ touch $@; \
+ sleep 1; \
+ touch $^; \
+ fi
endif