fix po download fix buglet in docs makefile
authorThomas Vander Stichele <thomas@apestaart.org>
Tue, 20 Apr 2004 16:10:48 +0000 (16:10 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Tue, 20 Apr 2004 16:10:48 +0000 (16:10 +0000)
Original commit message from CVS:
fix po download
fix buglet in docs makefile

ChangeLog
Makefile.am
docs/manuals.mak

index 3cc66e4..a870672 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,13 @@
 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
 
        * Makefile.am:
+       * docs/manuals.mak:
+          add .po file download snippet
+          fix a bug in the doc makefile
+
+2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
+
+       * Makefile.am:
        * po/LINGUAS:
        * po/en_GB.po:
           Added en_GB translation (Gareth Owen)
 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
 
        * gst/gstinfo.h: adding Ronald's timestamp debugging defines
+          (GST_TIME_FORMAT, GST_TIME_ARGS)
 
 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
 
index 9754733..f21736f 100644 (file)
@@ -97,3 +97,6 @@ check-coverage:
 
 endif
 
+# a rule to redownload po files
+download-po:
+       cd po && for LI in `cat LINGUAS`; do echo Checking $$LI.po; wget -q -O $$LI.po.tmp http://www.iro.umontreal.ca/translation/maint/gstreamer/$$LI.po; if ! diff $$LI.po $$LI.po.tmp > /dev/null 2>&1; then echo "Updating $$LI.po"; mv $$LI.po.tmp $$LI.po; else rm $$LI.po.tmp; fi; done
index 1ea977e..dd90317 100644 (file)
@@ -28,8 +28,8 @@ SRC = $(XML) $(PNG_SRC) $(FIG_SRC) $(CSS) $(EXTRA_SOURCES)
 PAPER_LOCALE = nl_NL
 
 ### generate all documentation by default
-# FIXME: I don't think this rule survives automake in any of the dirs ?
-all: html ps pdf
+# hook in html generation
+all-local: html
 
 # can we generate HTML ?
 if     DOC_HTML