This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Fix update_web_docs_svn for libquadmath-vers.texi


For a while the nightly update_web_docs_svn cron job has been failing 
because the script didn't generate libquadmath-vers.texi, as used by 
libquadmath.texi.  I've applied this patch to fix this (and updated the 
checkout used by gccadmin).

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 169867)
+++ ChangeLog	(working copy)
@@ -1,3 +1,7 @@
+2011-02-07  Joseph Myers  <joseph@codesourcery.com>
+
+	* update_web_docs_svn: Generate libquadmath-vers.texi.
+
 2011-01-31  Gerald Pfeifer  <gerald@pfeifer.com>
 
 	* update_version_svn (FILES): Merge with datestamp_FILES.
Index: update_web_docs_svn
===================================================================
--- update_web_docs_svn	(revision 169867)
+++ update_web_docs_svn	(working copy)
@@ -151,6 +151,10 @@
    echo "@set BUGURL @uref{http://gcc.gnu.org/bugs/}";
 ) > $includedir/gcc-vers.texi
 
+# Generate libquadmath-vers.texi.
+echo "@set BUGURL @uref{http://gcc.gnu.org/bugs/}"; \
+  > $includedir/libquadmath-vers.texi
+
 # Now convert the relevant files from texi to HTML, PDF and PostScript.
 for file in $MANUALS; do
   filename=`find . -name ${file}.texi`

-- 
Joseph S. Myers
joseph@codesourcery.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]