diff options
author | abs <abs@pkgsrc.org> | 2005-04-01 13:28:08 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2005-04-01 13:28:08 +0000 |
commit | 32e0baec29a715ad23c3eaf30b92d8a82b29d69a (patch) | |
tree | 6de7b44c9e6ed3dc13bf4cafd6effae3fcd3a6c0 /www | |
parent | f515630139f18b4e2e03c7ae36d2a9c968ec64fa (diff) | |
download | pkgsrc-32e0baec29a715ad23c3eaf30b92d8a82b29d69a.tar.gz |
Fix URL from which list of mirror sites is obtained
Diffstat (limited to 'www')
-rwxr-xr-x | www/jakarta-tomcat/files/getsite.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/jakarta-tomcat/files/getsite.sh b/www/jakarta-tomcat/files/getsite.sh index 56531f5d710..bc2c41fb9ec 100755 --- a/www/jakarta-tomcat/files/getsite.sh +++ b/www/jakarta-tomcat/files/getsite.sh @@ -1,7 +1,7 @@ #!/bin/sh TOMCAT_VERSION=${1##*-} TOMCAT_VERSION=${TOMCAT_VERSION%%.tar.gz} -ftp -o - http://jakarta.apache.org/site/binindex.cgi | \ +ftp -o - http://jakarta.apache.org/site/downloads/downloads_tomcat-5.cgi | \ grep '<option' | \ tr -d '\n' | \ sed -e's/[[:space:]]*//g' -e's,[^<]*<optionvalue="\([^"]*\)">[^<]*</option>,\1 ,g' | \ |