summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2011-05-20 15:53:43 +0000
committerTomas Chvatal <scarabeus@gentoo.org>2011-05-20 15:53:43 +0000
commit1cee01a6f572e7726656803f6fa3c911e85f940c (patch)
treec75780959ecc1f71a323a92b66cc52474958fed9 /eclass
parentUse gentoo mirrors (diff)
downloadgentoo-2-1cee01a6f572e7726656803f6fa3c911e85f940c.tar.gz
gentoo-2-1cee01a6f572e7726656803f6fa3c911e85f940c.tar.bz2
gentoo-2-1cee01a6f572e7726656803f6fa3c911e85f940c.zip
Run default src_unpack at the end. Because users can specify something in src_uri and we should unpack it.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/git-2.eclass6
1 files changed, 5 insertions, 1 deletions
diff --git a/eclass/git-2.eclass b/eclass/git-2.eclass
index 56f53e1500af..7a0f810fe72f 100644
--- a/eclass/git-2.eclass
+++ b/eclass/git-2.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/git-2.eclass,v 1.8 2011/05/20 15:32:54 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/git-2.eclass,v 1.9 2011/05/20 15:53:43 scarabeus Exp $
# @ECLASS: git-2.eclass
# @MAINTAINER:
@@ -518,4 +518,8 @@ git-2_src_unpack() {
git-2_branch
git-2_bootstrap
echo ">>> Unpacked to ${EGIT_SOURCEDIR}"
+
+ # Users can specify some SRC_URI and we should
+ # unpack the files too.
+ default_src_unpack
}