summaryrefslogtreecommitdiff
path: root/macro2m4.py
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2010-03-01 22:18:56 +0100
committerPeter Simons <simons@cryp.to>2010-03-01 23:00:04 +0100
commit734dbffb97f39566e96af03980c9c7980ce0089a (patch)
treeeaac86e1ebe9ccbb5ad0096f24b85b4901354819 /macro2m4.py
parent799f2a31dafa57075cdbd81797dc7375f5a3faf2 (diff)
downloadautoconf-archive-734dbffb97f39566e96af03980c9c7980ce0089a.tar.gz
fix-website, macro2m4.py: use gnu.org URL rather than nongnu.org
Diffstat (limited to 'macro2m4.py')
-rwxr-xr-xmacro2m4.py2
1 files changed, 1 insertions, 1 deletions
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"):