mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-16 19:25:18 +00:00
fix po download fix buglet in docs makefile
Original commit message from CVS: fix po download fix buglet in docs makefile
This commit is contained in:
parent
d53af96374
commit
bf291b3f72
3 changed files with 13 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
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:
|
||||
|
@ -519,6 +526,7 @@
|
|||
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>
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue