From 3aad955181e66906dba1197fddbb8d218bcc7d1d Mon Sep 17 00:00:00 2001 From: jim-p Date: Fri, 17 Dec 2010 10:31:41 -0500 Subject: [PATCH] When we supply a version number, it should be under All/ and not Latest/ (which has names but no version numbers) --- etc/inc/pkg-utils.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/inc/pkg-utils.inc b/etc/inc/pkg-utils.inc index c753f54655..23719398de 100644 --- a/etc/inc/pkg-utils.inc +++ b/etc/inc/pkg-utils.inc @@ -420,7 +420,7 @@ function pkg_fetch_recursive($pkgname, $filename, $dependlevel = 0, $base_url = $arch = php_uname("m"); $rel = php_uname("r"); $rel = strtolower(substr($rel, 0, strrpos($rel, "-"))); - $priv_url = "http://ftp2.{$osname}.org/pub/{$osname}/ports/{$arch}/packages-{$rel}/Latest"; + $priv_url = "http://ftp2.{$osname}.org/pub/{$osname}/ports/{$arch}/packages-{$rel}/All"; if (empty($base_url)) $base_url = $priv_url; if (substr($base_url, -1) == "/")