diff options
author | Gregorio Guidi <greg_g@gentoo.org> | 2005-11-29 18:59:29 +0000 |
---|---|---|
committer | Gregorio Guidi <greg_g@gentoo.org> | 2005-11-29 18:59:29 +0000 |
commit | 10afd5a7d15d44fb218da320646da595e761f5de (patch) | |
tree | 0fbf67cbf5c79ec8212ff0932cd2921d42d224e0 /eclass/kde-meta.eclass | |
parent | Complete fix for SRC_URI. (diff) | |
download | gentoo-2-10afd5a7d15d44fb218da320646da595e761f5de.tar.gz gentoo-2-10afd5a7d15d44fb218da320646da595e761f5de.tar.bz2 gentoo-2-10afd5a7d15d44fb218da320646da595e761f5de.zip |
Fix previous commit.
Diffstat (limited to 'eclass/kde-meta.eclass')
-rw-r--r-- | eclass/kde-meta.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/kde-meta.eclass b/eclass/kde-meta.eclass index 2969e279269a..1ecf38c046af 100644 --- a/eclass/kde-meta.eclass +++ b/eclass/kde-meta.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde-meta.eclass,v 1.63 2005/11/29 18:56:53 greg_g Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde-meta.eclass,v 1.64 2005/11/29 18:59:29 greg_g Exp $ # # Author Dan Armak <danarmak@gentoo.org> # Simone Gotti <motaboy@gentoo.org> @@ -121,9 +121,9 @@ if [ -n "$XDELTA_BASE" ]; then # depends on $PV only, so is safe to modify SRC_U for x in $XDELTA_DELTA; do SRC_URI="$SRC_URI $x" done - SRC_URI="$SRC_URI ) !kdexdeltas? ( mirror://kde/$SRC_PATH )" + SRC_URI="$SRC_URI ) !kdexdeltas? ( $SRC_PATH )" else # xdelta don't available, for example with kde 3.4 alpha/beta/rc ebuilds. - SRC_URI="$SRC_URI mirror://kde/$SRC_PATH" + SRC_URI="$SRC_URI $SRC_PATH" fi debug-print "$ECLASS: finished, SRC_URI=$SRC_URI" |