diff options
| author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-09-06 14:01:18 +0000 |
|---|---|---|
| committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-09-06 14:01:18 +0000 |
| commit | 5c0c3b40c1bf4d2380e702bd7c3fc8903e802393 (patch) | |
| tree | 9dbb4d4fa25d7990fa7848a3b4cc42a21db16dc0 /doc/faq/Makefile.am | |
| parent | 6dce526cb8c1290d573e33a46c9fc6cbc7194e69 (diff) | |
| download | xine-lib-5c0c3b40c1bf4d2380e702bd7c3fc8903e802393.tar.gz xine-lib-5c0c3b40c1bf4d2380e702bd7c3fc8903e802393.tar.bz2 | |
adding an FAQ entry on the blue screen problem
CVS patchset: 6942
CVS date: 2004/09/06 14:01:18
Diffstat (limited to 'doc/faq/Makefile.am')
| -rw-r--r-- | doc/faq/Makefile.am | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/doc/faq/Makefile.am b/doc/faq/Makefile.am index 918c311c3..311be2615 100644 --- a/doc/faq/Makefile.am +++ b/doc/faq/Makefile.am @@ -20,40 +20,44 @@ clean-docs: test "x$(srcdir)" = x. || rm -f faq.sgml dist-hook: - @make fail_if_missing=yes docs +ifndef distcheck_lax + @$(MAKE) fail_if_missing=yes docs +else + @$(MAKE) docs +endif if HAVE_SGMLTOOLS faq.html: faq.sgml - $(MAKE) docs-prepare + @$(MAKE) docs-prepare $(SGMLTOOLS) -b onehtml faq.sgml; else faq.html: faq.sgml - $(MAKE) docs-prepare + @$(MAKE) docs-prepare if test x"$(fail_if_missing)" = x"yes"; then \ echo "Please install sgmltools-lite."; \ exit 1; \ fi - -if test x"$(fail_if_missing)" != x"yes"; then \ + if test x"$(fail_if_missing)" != x"yes"; then \ touch $@; \ sleep 1; \ - touch $^; \ + touch $(notdir $^); \ fi endif if HAVE_SGMLTOOLS faq.txt: faq.sgml - $(MAKE) docs-prepare + @$(MAKE) docs-prepare $(SGMLTOOLS) -b txt faq.sgml; else faq.txt: faq.sgml - $(MAKE) docs-prepare + @$(MAKE) docs-prepare if test x"$(fail_if_missing)" = x"yes"; then \ echo "Please install sgmltools-lite."; \ exit 1; \ fi - -if test x"$(fail_if_missing)" != x"yes"; then \ + if test x"$(fail_if_missing)" != x"yes"; then \ touch $@; \ sleep 1; \ - touch $^; \ + touch $(notdir $^); \ fi endif |
