diff options
author | Chris Larson <clarson@kergoth.com> | 2004-11-17 02:51:55 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-11-17 02:51:55 +0000 |
commit | ec713bb98882c372439e2d97a58be0657545eea1 (patch) | |
tree | ef41bb18e744a816f8333196df916abb84ffe232 | |
parent | 54040045094314bcbab7574023f2da8dae123546 (diff) |
Correct the set of PREMIRRORS in bridge-utils.
BKrev: 419abccbrs653S-5-Ga5W2k3-p4thQ
-rw-r--r-- | bridge-utils/bridge-utils_0.9.7.oe | 4 | ||||
-rw-r--r-- | bridge-utils/bridge-utils_1.0.4.oe | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/bridge-utils/bridge-utils_0.9.7.oe b/bridge-utils/bridge-utils_0.9.7.oe index 75a99eaf99..7a641a8a70 100644 --- a/bridge-utils/bridge-utils_0.9.7.oe +++ b/bridge-utils/bridge-utils_0.9.7.oe @@ -8,7 +8,9 @@ S = "${WORKDIR}/bridge-utils-${PV}" # The default sourceforge mirror does not yet have this package, and # sourceforge redirects on the file missing so wget doesn't realize it failed. # Force our own default here, since its known to have it. -PREMIRRORS_prepend = "${SOURCEFORGE_MIRROR} http://unc.dl.sourceforge.net/sourceforge" +PREMIRRORS_prepend () { + ${SOURCEFORGE_MIRROR} http://unc.dl.sourceforge.net/sourceforge +} inherit autotools diff --git a/bridge-utils/bridge-utils_1.0.4.oe b/bridge-utils/bridge-utils_1.0.4.oe index 4dcafa8565..ad075d9c65 100644 --- a/bridge-utils/bridge-utils_1.0.4.oe +++ b/bridge-utils/bridge-utils_1.0.4.oe @@ -9,7 +9,9 @@ S = "${WORKDIR}/bridge-utils-${PV}" # The default sourceforge mirror does not yet have this package, and # sourceforge redirects on the file missing so wget doesn't realize it failed. # Force our own default here, since its known to have it. -PREMIRRORS_prepend = "${SOURCEFORGE_MIRROR} http://unc.dl.sourceforge.net/sourceforge" +PREMIRRORS_prepend () { + ${SOURCEFORGE_MIRROR} http://unc.dl.sourceforge.net/sourceforge +} inherit autotools |