diff options
-rw-r--r-- | doc/faq/Makefile.am | 34 | ||||
-rw-r--r-- | doc/hackersguide/Makefile.am | 20 |
2 files changed, 29 insertions, 25 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 diff --git a/doc/hackersguide/Makefile.am b/doc/hackersguide/Makefile.am index 47455bcb4..082601466 100644 --- a/doc/hackersguide/Makefile.am +++ b/doc/hackersguide/Makefile.am @@ -37,24 +37,26 @@ hackersguide.html: $(hackersguide_sgml) else hackersguide.html: $(hackersguide_sgml) if test x"$(fail_if_missing)" = x"yes"; then \ - echo "Please install sgmltools-lite."; \ - exit 1; \ + echo "Please install sgmltools-lite."; \ + exit 1; \ else \ - touch $@; \ - touch $^; \ + touch $@; \ + sleep 1; \ + touch $^; \ fi endif if HAVE_FIG2DEV %.png: $(srcdir)/%.fig - $(FIG2DEV) -L png -S 4 $< $@; + $(FIG2DEV) -L png -S 4 $< $@; else %.png: $(srcdir)/%.fig if test x"$(fail_if_missing)" = x"yes"; then \ - echo "Please install fig2dev."; \ - exit 1; \ + echo "Please install fig2dev."; \ + exit 1; \ else \ - touch $@; \ - touch $^; \ + touch $@; \ + sleep 1; \ + touch $^; \ fi endif |