diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-08-16 15:18:37 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-08-16 15:18:37 +0000 |
commit | 91d34cd5ca416b490421584e569f40bedb89caf1 (patch) | |
tree | d771d7d38578067a1ae1756babbaf196c53536ec /doc/hackersguide | |
parent | 6c999d2c335f1eb7e178495cff82cd8d692e3df1 (diff) | |
download | xine-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/hackersguide')
-rw-r--r-- | doc/hackersguide/Makefile.am | 20 |
1 files changed, 11 insertions, 9 deletions
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 |