From 734dbffb97f39566e96af03980c9c7980ce0089a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Mar 2010 22:18:56 +0100 Subject: fix-website, macro2m4.py: use gnu.org URL rather than nongnu.org --- macro2m4.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'macro2m4.py') diff --git a/macro2m4.py b/macro2m4.py index cfbd40b..c1709ba 100755 --- a/macro2m4.py +++ b/macro2m4.py @@ -57,7 +57,7 @@ for i in range(len(m.description)): spaces = min(map(countSpaces, para)) if spaces > 1: m.description[i] = map(lambda l: ' ' + l[spaces:], para) -url = "http://www.nongnu.org/autoconf-archive/%s.html" % m.name +url = "http://www.gnu.org/software/autoconf-archive/%s.html" % m.name lineLen = max(len(url) + 2, 75) m.url = "# %s\n# %s\n# %s" % ('=' * lineLen, (' ' * ((lineLen - len(url)) / 2)) + url, '=' * lineLen) if m.__dict__.get("obsolete"): -- cgit v1.2.1