From 5a82c74822d3272df2f5929133680478c0cfb4bd Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 6 Sep 2019 22:40:42 -0700 Subject: Prefer https to http for gnu.org and fsf.org URLs Also, change sources.redhat.com to sourceware.org. This patch was automatically generated by running the following shell script, which uses GNU sed, and which avoids modifying files imported from upstream: sed -ri ' s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g ' \ $(find $(git ls-files) -prune -type f \ ! -name '*.po' \ ! -name 'ChangeLog*' \ ! -path COPYING ! -path COPYING.LIB \ ! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \ ! -path manual/texinfo.tex ! -path scripts/config.guess \ ! -path scripts/config.sub ! -path scripts/install-sh \ ! -path scripts/mkinstalldirs ! -path scripts/move-if-change \ ! -path INSTALL ! -path locale/programs/charmap-kw.h \ ! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \ ! '(' -name configure \ -execdir test -f configure.ac -o -f configure.in ';' ')' \ ! '(' -name preconfigure \ -execdir test -f preconfigure.ac ';' ')' \ -print) and then by running 'make dist-prepare' to regenerate files built from the altered files, and then executing the following to cleanup: chmod a+x sysdeps/unix/sysv/linux/riscv/configure # Omit irrelevant whitespace and comment-only changes, # perhaps from a slightly-different Autoconf version. git checkout -f \ sysdeps/csky/configure \ sysdeps/hppa/configure \ sysdeps/riscv/configure \ sysdeps/unix/sysv/linux/csky/configure # Omit changes that caused a pre-commit check to fail like this: # remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines git checkout -f \ sysdeps/powerpc/powerpc64/ppc-mcount.S \ sysdeps/unix/sysv/linux/s390/s390-64/syscall.S # Omit change that caused a pre-commit check to fail like this: # remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S --- manual/Makefile | 2 +- manual/check-safety.sh | 2 +- manual/examples/add.c | 2 +- manual/examples/argp-ex1.c | 2 +- manual/examples/argp-ex2.c | 2 +- manual/examples/argp-ex3.c | 2 +- manual/examples/argp-ex4.c | 2 +- manual/examples/atexit.c | 2 +- manual/examples/db.c | 2 +- manual/examples/dir.c | 2 +- manual/examples/dir2.c | 2 +- manual/examples/execinfo.c | 2 +- manual/examples/filecli.c | 2 +- manual/examples/filesrv.c | 2 +- manual/examples/fmtmsgexpl.c | 2 +- manual/examples/genpass.c | 2 +- manual/examples/inetcli.c | 2 +- manual/examples/inetsrv.c | 2 +- manual/examples/isockad.c | 2 +- manual/examples/longopt.c | 2 +- manual/examples/memopen.c | 2 +- manual/examples/memstrm.c | 2 +- manual/examples/mkdirent.c | 2 +- manual/examples/mkfsock.c | 2 +- manual/examples/mkisock.c | 2 +- manual/examples/mygetpass.c | 2 +- manual/examples/ofdlocks.c | 2 +- manual/examples/pipe.c | 2 +- manual/examples/popen.c | 2 +- manual/examples/rprintf.c | 2 +- manual/examples/search.c | 2 +- manual/examples/select.c | 2 +- manual/examples/setjmp.c | 2 +- manual/examples/sigh1.c | 2 +- manual/examples/sigusr.c | 2 +- manual/examples/stpcpy.c | 2 +- manual/examples/strdupa.c | 2 +- manual/examples/strftim.c | 2 +- manual/examples/subopt.c | 2 +- manual/examples/swapcontext.c | 2 +- manual/examples/termios.c | 2 +- manual/examples/testopt.c | 2 +- manual/examples/testpass.c | 2 +- manual/examples/timeval_subtract.c | 2 +- manual/examples/twalk.c | 2 +- manual/freemanuals.texi | 2 +- manual/libc.texinfo | 2 +- manual/summary.pl | 2 +- 48 files changed, 48 insertions(+), 48 deletions(-) (limited to 'manual') diff --git a/manual/Makefile b/manual/Makefile index 4f76ee85d2..b951b34f8f 100644 --- a/manual/Makefile +++ b/manual/Makefile @@ -13,7 +13,7 @@ # You should have received a copy of the GNU Lesser General Public # License along with the GNU C Library; if not, see -# . +# . # Makefile for the GNU C Library manual. diff --git a/manual/check-safety.sh b/manual/check-safety.sh index d9c97cbced..962b851925 100644 --- a/manual/check-safety.sh +++ b/manual/check-safety.sh @@ -15,7 +15,7 @@ # You should have received a copy of the GNU Lesser General Public # License along with the GNU C Library; if not, see -# . +# . # Check that the @safety notes are self-consistent, i.e., that they're diff --git a/manual/examples/add.c b/manual/examples/add.c index 0562eafa23..d9f9dae139 100644 --- a/manual/examples/add.c +++ b/manual/examples/add.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/argp-ex1.c b/manual/examples/argp-ex1.c index e92c45c0ae..68852051ef 100644 --- a/manual/examples/argp-ex1.c +++ b/manual/examples/argp-ex1.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ /* This is (probably) the smallest possible program that diff --git a/manual/examples/argp-ex2.c b/manual/examples/argp-ex2.c index 8029c25634..450745c71d 100644 --- a/manual/examples/argp-ex2.c +++ b/manual/examples/argp-ex2.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ /* This program doesn't use any options or arguments, but uses diff --git a/manual/examples/argp-ex3.c b/manual/examples/argp-ex3.c index e619f81844..3a73d761fa 100644 --- a/manual/examples/argp-ex3.c +++ b/manual/examples/argp-ex3.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ /* This program uses the same features as example 2, and uses options and diff --git a/manual/examples/argp-ex4.c b/manual/examples/argp-ex4.c index a1113d9ffa..76bcdeaaf4 100644 --- a/manual/examples/argp-ex4.c +++ b/manual/examples/argp-ex4.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ /* This program uses the same features as example 3, but has more diff --git a/manual/examples/atexit.c b/manual/examples/atexit.c index 8a71a78262..f8ebdd9783 100644 --- a/manual/examples/atexit.c +++ b/manual/examples/atexit.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/db.c b/manual/examples/db.c index ead3b67138..22fbb672c3 100644 --- a/manual/examples/db.c +++ b/manual/examples/db.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/dir.c b/manual/examples/dir.c index caf6d3d2ea..c869a1b871 100644 --- a/manual/examples/dir.c +++ b/manual/examples/dir.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ /*@group*/ diff --git a/manual/examples/dir2.c b/manual/examples/dir2.c index 4f68d93521..0f3f224132 100644 --- a/manual/examples/dir2.c +++ b/manual/examples/dir2.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ /*@group*/ diff --git a/manual/examples/execinfo.c b/manual/examples/execinfo.c index 608292f4f8..7526d5a0e7 100644 --- a/manual/examples/execinfo.c +++ b/manual/examples/execinfo.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/filecli.c b/manual/examples/filecli.c index 0417f0db68..094dd216cb 100644 --- a/manual/examples/filecli.c +++ b/manual/examples/filecli.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/filesrv.c b/manual/examples/filesrv.c index 48c0d0a031..3dc0df3138 100644 --- a/manual/examples/filesrv.c +++ b/manual/examples/filesrv.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/fmtmsgexpl.c b/manual/examples/fmtmsgexpl.c index 15d431464f..e7089a52ec 100644 --- a/manual/examples/fmtmsgexpl.c +++ b/manual/examples/fmtmsgexpl.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/genpass.c b/manual/examples/genpass.c index 104b6c0ab4..faba2a1f3e 100644 --- a/manual/examples/genpass.c +++ b/manual/examples/genpass.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/inetcli.c b/manual/examples/inetcli.c index 9d59ef2bb0..685f49bc20 100644 --- a/manual/examples/inetcli.c +++ b/manual/examples/inetcli.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/inetsrv.c b/manual/examples/inetsrv.c index 3f20e7a9b4..85788dc333 100644 --- a/manual/examples/inetsrv.c +++ b/manual/examples/inetsrv.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/isockad.c b/manual/examples/isockad.c index 2a9fc2da77..7b0261c626 100644 --- a/manual/examples/isockad.c +++ b/manual/examples/isockad.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/longopt.c b/manual/examples/longopt.c index aa5ba53024..f776957534 100644 --- a/manual/examples/longopt.c +++ b/manual/examples/longopt.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/memopen.c b/manual/examples/memopen.c index 21f51a95cc..4c35a09ed5 100644 --- a/manual/examples/memopen.c +++ b/manual/examples/memopen.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/memstrm.c b/manual/examples/memstrm.c index f9c58a1395..8359c59a44 100644 --- a/manual/examples/memstrm.c +++ b/manual/examples/memstrm.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/mkdirent.c b/manual/examples/mkdirent.c index c9b865b73b..871f27fdca 100644 --- a/manual/examples/mkdirent.c +++ b/manual/examples/mkdirent.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/mkfsock.c b/manual/examples/mkfsock.c index aad1b450ec..4372225103 100644 --- a/manual/examples/mkfsock.c +++ b/manual/examples/mkfsock.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/mkisock.c b/manual/examples/mkisock.c index d790895019..171c64a634 100644 --- a/manual/examples/mkisock.c +++ b/manual/examples/mkisock.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/mygetpass.c b/manual/examples/mygetpass.c index ee72abd179..2896860528 100644 --- a/manual/examples/mygetpass.c +++ b/manual/examples/mygetpass.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/ofdlocks.c b/manual/examples/ofdlocks.c index 00a9504d94..c2b5e5c047 100644 --- a/manual/examples/ofdlocks.c +++ b/manual/examples/ofdlocks.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #define _GNU_SOURCE diff --git a/manual/examples/pipe.c b/manual/examples/pipe.c index 45530af64d..b5ecab21ca 100644 --- a/manual/examples/pipe.c +++ b/manual/examples/pipe.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/popen.c b/manual/examples/popen.c index 97c0eab37f..9bcc27696d 100644 --- a/manual/examples/popen.c +++ b/manual/examples/popen.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/rprintf.c b/manual/examples/rprintf.c index 232dc69748..ee28830c0c 100644 --- a/manual/examples/rprintf.c +++ b/manual/examples/rprintf.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/search.c b/manual/examples/search.c index 81357b01bb..7c648641dd 100644 --- a/manual/examples/search.c +++ b/manual/examples/search.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/select.c b/manual/examples/select.c index cd5a52a955..2e968d7f36 100644 --- a/manual/examples/select.c +++ b/manual/examples/select.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ /*@group*/ diff --git a/manual/examples/setjmp.c b/manual/examples/setjmp.c index 8199dda853..105944c185 100644 --- a/manual/examples/setjmp.c +++ b/manual/examples/setjmp.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/sigh1.c b/manual/examples/sigh1.c index df6d0c7b39..2385b7a55f 100644 --- a/manual/examples/sigh1.c +++ b/manual/examples/sigh1.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/sigusr.c b/manual/examples/sigusr.c index bb3d9edb4d..7d6f450dd1 100644 --- a/manual/examples/sigusr.c +++ b/manual/examples/sigusr.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ /*@group*/ diff --git a/manual/examples/stpcpy.c b/manual/examples/stpcpy.c index 1b44eab4da..5c53920a63 100644 --- a/manual/examples/stpcpy.c +++ b/manual/examples/stpcpy.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/strdupa.c b/manual/examples/strdupa.c index fb8ac2c38f..085dc2470d 100644 --- a/manual/examples/strdupa.c +++ b/manual/examples/strdupa.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/strftim.c b/manual/examples/strftim.c index 008d848844..20492aa281 100644 --- a/manual/examples/strftim.c +++ b/manual/examples/strftim.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/subopt.c b/manual/examples/subopt.c index f9769ac52a..c6d0a1fcf8 100644 --- a/manual/examples/subopt.c +++ b/manual/examples/subopt.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/swapcontext.c b/manual/examples/swapcontext.c index 427184481b..70c57445f3 100644 --- a/manual/examples/swapcontext.c +++ b/manual/examples/swapcontext.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/termios.c b/manual/examples/termios.c index 22db2858ce..5e0dfccc09 100644 --- a/manual/examples/termios.c +++ b/manual/examples/termios.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/testopt.c b/manual/examples/testopt.c index 0e0a84b470..ea2111540b 100644 --- a/manual/examples/testopt.c +++ b/manual/examples/testopt.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ /*@group*/ diff --git a/manual/examples/testpass.c b/manual/examples/testpass.c index ec65644e87..2bf282a943 100644 --- a/manual/examples/testpass.c +++ b/manual/examples/testpass.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/examples/timeval_subtract.c b/manual/examples/timeval_subtract.c index cd2af31044..edca57739a 100644 --- a/manual/examples/timeval_subtract.c +++ b/manual/examples/timeval_subtract.c @@ -12,7 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ /* Subtract the `struct timeval' values X and Y, diff --git a/manual/examples/twalk.c b/manual/examples/twalk.c index 04e32731d6..afa2b6e8a4 100644 --- a/manual/examples/twalk.c +++ b/manual/examples/twalk.c @@ -12,7 +12,7 @@ Lesser General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, see . + along with this program; if not, see . */ #include diff --git a/manual/freemanuals.texi b/manual/freemanuals.texi index 9caf22017c..189f63c459 100644 --- a/manual/freemanuals.texi +++ b/manual/freemanuals.texi @@ -90,4 +90,4 @@ paid or pay the authors to work on it. The Free Software Foundation maintains a list of free documentation published by other publishers, at -@url{http://www.fsf.org/doc/other-free-books.html}. +@url{https://www.fsf.org/doc/other-free-books.html}. diff --git a/manual/libc.texinfo b/manual/libc.texinfo index 45b457edd9..dc125dc2cc 100644 --- a/manual/libc.texinfo +++ b/manual/libc.texinfo @@ -95,7 +95,7 @@ supports it in developing GNU and promoting software freedom.'' @c Disabled (printed editions, see above). @c @sp 2 -@c Published by the @uref{http://www.fsf.org/, Free Software Foundation} @* +@c Published by the @uref{https://www.fsf.org/, Free Software Foundation} @* @c ISBN @value{ISBN} @* @c Disabled (printed editions, see above). diff --git a/manual/summary.pl b/manual/summary.pl index 15a7524559..9e7c67ad42 100755 --- a/manual/summary.pl +++ b/manual/summary.pl @@ -17,7 +17,7 @@ # You should have received a copy of the GNU Lesser General Public # License along with the GNU C Library; if not, see -# . +# . # Anything declared in a header or defined in a standard should have # its origins annotated using the @standards macro (see macro.texi). -- cgit 1.4.1