diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2017-09-16 13:03:36 -0700 |
---|---|---|
committer | Mathieu Lirzin <mthl@gnu.org> | 2017-09-19 13:10:44 +0200 |
commit | 3562e384f43bbd9d48598904a82a792039f4ce33 (patch) | |
tree | 0a45d82621c6ef569a78a80ff9deca518aeac56b /t/libobj15c.sh | |
parent | 29408e8b1d6efec3a416a761742e5cceae381d19 (diff) | |
download | automake-3562e384f43bbd9d48598904a82a792039f4ce33.tar.gz |
Prefer https: URLs
In Gnulib, Emacs, etc. we are changing ftp: and http: URLs to use
https:, to discourage man-in-the-middle attacks when downloading
software. The attached patch propagates these changes upstream to
Automake. This patch does not affect files that Automake is
downstream of, which I'll patch separately.
Althouth the resources are not secret, plain HTTP is vulnerable to
malicious routers that tamper with responses from GNU servers,
and this sort of thing is all too common when people in some other
countries browse US-based websites. See, for example:
Aceto G, Botta A, Pescapé A, Awan MF, Ahmad T, Qaisar
S. Analyzing internet censorship in Pakistan. RTSI
2016. https://dx.doi.org/10.1109/RTSI.2016.7740626
HTTPS is not a complete solution here, but it can be a significant
help. The GNU project regularly serves up code to users, so we should
take some care here.
Diffstat (limited to 't/libobj15c.sh')
-rw-r--r-- | t/libobj15c.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/libobj15c.sh b/t/libobj15c.sh index 70388a3c6..b03451335 100644 --- a/t/libobj15c.sh +++ b/t/libobj15c.sh @@ -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 <http://www.gnu.org/licenses/>. +# along with this program. If not, see <https://www.gnu.org/licenses/>. # Nonexistent sources for AC_LIBSOURCES should cause Automake to fail. @@ -23,7 +23,7 @@ AC_PROG_CC AC_PROG_RANLIB AC_LIBSOURCES([foobar.c, bazquux.c]) # NOTE: this call to AC_OUTPUT is really needed; see Automake bug #7635 -# <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7635> +# <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=7635> AC_OUTPUT END |