gnu-web-doc-update: don't use host alias, cvs.sv.gnu.org
authorJim Meyering <meyering@fb.com>
Thu, 23 Mar 2023 02:51:12 +0000 (19:51 -0700)
committerBruno Haible <bruno@clisp.org>
Tue, 28 Mar 2023 23:15:31 +0000 (01:15 +0200)
* build-aux/gnu-web-doc-update: Use hostname cvs.savannah.gnu.org,
not cvs.sv.gnu.org. Using the shorter alias would elicit this:
  $ pkg=grep ; cvs -d $USER@cvs.sv.gnu.org:/webcvs/$pkg co $pkg
  Bad server host key: Invalid key length

ChangeLog
build-aux/gnu-web-doc-update

index d57580ae2aaac394e9cb62eadfc7558ccbbd0b9b..d2676645b37af82c2cbe870976205d7613480232 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2023-03-22  Jim Meyering  <meyering@fb.com>
+
+       gnu-web-doc-update: don't use host alias, cvs.sv.gnu.org
+       * build-aux/gnu-web-doc-update: Use hostname cvs.savannah.gnu.org,
+       not cvs.sv.gnu.org. Using the shorter alias would elicit this:
+         $ pkg=grep ; cvs -d $USER@cvs.sv.gnu.org:/webcvs/$pkg co $pkg
+         Bad server host key: Invalid key length
+
 2023-03-21  Bruno Haible  <bruno@clisp.org>
 
        unistdio/u*-vasnprintf: Fix conversion of %Id directive result.
index c041364fbe329298d872ec7397b392227165131d..3f6d0afa9ff8cc908b5f7af9ed8f5d67f0ec227a 100755 (executable)
@@ -4,7 +4,7 @@
 
 VERSION=2022-01-27.18; # UTC
 
-# Copyright (C) 2009-2022 Free Software Foundation, Inc.
+# Copyright (C) 2009-2023 Free Software Foundation, Inc.
 
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -175,7 +175,7 @@ set +e
 
 tmp=$(mktemp -d web-doc-update.XXXXXX) || exit 1
 ( cd $tmp \
-    && $CVS -d $cvs_user@cvs.sv.gnu.org:/webcvs/$pkg co $pkg )
+    && $CVS -d $cvs_user@cvs.savannah.gnu.org:/webcvs/$pkg co $pkg )
 $RSYNC -avP "$builddir"/doc/manual/ $tmp/$pkg/manual
 
 (