On Thu, Oct 15, 2009 at 11:43:11AM -0400, Ryan Mansfield wrote:
> Jakub Jelinek wrote:
>> GCC 4.4.2 release tarballs have been uploaded, the 4.4 branch is again
>> open for commits under the usual release branch rules.
>>
>> I'll announce the release once mirrors had some time to download it.
>
> The onlinedocs already point to 4.4.2 but there is a permission issue
> accessing onlinedocs/gcc-4.4.2/gcc/ (i.e. 403)
Thanks for the report, apparently maintainer-scripts/update_web_docs_svn
has some code like:
today=`date +%d`
if test $today = 15; then
find $DOCSDIR -type f -maxdepth 1 -print | grep -v index.html | xargs rm
for m in $MANUALS; do
rm -f $DOCSDIR/$m/*.html $DOCSDIR/$m/*.html.gz
done
fi
which failed (presumably because we want this to only happen for the trunk
runs and only on the first run during that day; guess xargs rm should be
xargs rm -f). Next time I'll try to avoid releasing on 15th... ;)
http://gcc.gnu.org/onlinedocs/gcc-4.4.2/ should work now.
Jakub