fix doc build fix autogen
authorThomas Vander Stichele <thomas@apestaart.org>
Fri, 23 Jan 2004 13:16:33 +0000 (13:16 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Fri, 23 Jan 2004 13:16:33 +0000 (13:16 +0000)
Original commit message from CVS:
fix doc build
fix autogen

ChangeLog
autogen.sh

index b77a414..d481ea5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
+
+       * autogen.sh:
+          make autopoint force, and libtoolize not copy
+       * common/m4/as-docbook.m4:
+          added docbook xml catalog setup check
+       * common/m4/gst-doc.m4:
+          use docbook check
+
 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
 
        * gst/gsttag.c: (_gst_tag_initialize), (gst_tag_register):
index a22da0d..5681a6e 100755 (executable)
@@ -63,14 +63,14 @@ if test -f po/Makefile.in.in;
 then
   patch -p0 -R < common/gettext.patch
 fi
-tool_run "$autopoint"
+tool_run "$autopoint --force"
 patch -p0 < common/gettext.patch
 
 # aclocal
 if test -f acinclude.m4; then rm acinclude.m4; fi
 tool_run "$aclocal" "-I common/m4 $ACLOCAL_FLAGS"
 
-tool_run "$libtoolize" "--copy --force"
+tool_run "$libtoolize" "--force"
 tool_run "$autoheader"
 
 # touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -- wingo