Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: git.eclass
Date: Wed, 29 Dec 2010 14:05:17
Message-Id: 20101229140508.2B50A2004E@flycatcher.gentoo.org
1 mgorny 10/12/29 14:05:08
2
3 Modified: git.eclass
4 Log:
5 Call 'git submodule sync' as well to support the case when submodule URL changes.
6
7 Revision Changes Path
8 1.49 eclass/git.eclass
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git.eclass?rev=1.49&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git.eclass?rev=1.49&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git.eclass?r1=1.48&r2=1.49
13
14 Index: git.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/git.eclass,v
17 retrieving revision 1.48
18 retrieving revision 1.49
19 diff -u -r1.48 -r1.49
20 --- git.eclass 27 Jul 2010 12:39:34 -0000 1.48
21 +++ git.eclass 29 Dec 2010 14:05:08 -0000 1.49
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2009 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/git.eclass,v 1.48 2010/07/27 12:39:34 reavertm Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/git.eclass,v 1.49 2010/12/29 14:05:08 mgorny Exp $
27
28 # @ECLASS: git.eclass
29 # @MAINTAINER:
30 @@ -159,6 +159,8 @@
31 if [[ -n ${EGIT_HAS_SUBMODULES} ]]; then
32 debug-print "git submodule init"
33 git submodule init
34 + debug-print "git submodule sync"
35 + git submodule sync
36 debug-print "git submodule update"
37 git submodule update
38 fi