diff options
author | Robin KAY <komadori@users.sourceforge.net> | 2004-08-12 07:26:59 +0000 |
---|---|---|
committer | Robin KAY <komadori@users.sourceforge.net> | 2004-08-12 07:26:59 +0000 |
commit | b6ff458329367c2c7c3540d584b47dc0144caa4c (patch) | |
tree | 5dfcc4cc4244ef9ffd8b1ba480b9ae196d54254b /doc/faq | |
parent | 7b6a71781f181c073eb26b0c9d10d66852260fc0 (diff) | |
download | xine-lib-b6ff458329367c2c7c3540d584b47dc0144caa4c.tar.gz xine-lib-b6ff458329367c2c7c3540d584b47dc0144caa4c.tar.bz2 |
Fix problems building xine when sgmltools and/or fig2dev are not present.
CVS patchset: 6880
CVS date: 2004/08/12 07:26:59
Diffstat (limited to 'doc/faq')
-rw-r--r-- | doc/faq/Makefile.am | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/doc/faq/Makefile.am b/doc/faq/Makefile.am index d57e08cf9..f534d867a 100644 --- a/doc/faq/Makefile.am +++ b/doc/faq/Makefile.am @@ -26,15 +26,13 @@ faq.html: faq.sgml $(SGMLTOOLS) -b onehtml faq.sgml; else faq.html: faq.sgml - if test "$(fail_if_missing)" = "yes"; then \ + if test x"$(fail_if_missing)" = x"yes"; then \ echo "Please install sgmltools-lite."; \ exit 1; \ else \ touch $@; \ - sleep 1; \ touch $^; \ - fi; \ - fi + fi endif if HAVE_SGMLTOOLS @@ -42,13 +40,11 @@ faq.txt: faq.sgml $(SGMLTOOLS) -b txt faq.sgml; else faq.txt: faq.sgml - if test "$(fail_if_missing)" = "yes"; then \ + if test x"$(fail_if_missing)" = x"yes"; then \ echo "Please install sgmltools-lite."; \ exit 1; \ else \ touch $@; \ - sleep 1; \ touch $^; \ - fi; \ - fi + fi endif |