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: ChangeLog git-r3.eclass
Date: Mon, 07 Jul 2014 14:42:00
Message-Id: 20140707144156.AEDFC2004E@flycatcher.gentoo.org
1 mgorny 14/07/07 14:41:56
2
3 Modified: ChangeLog git-r3.eclass
4 Log:
5 Stop forcing -m0755 on EGIT3_STORE_DIR and parents, bug #516508.
6
7 Revision Changes Path
8 1.1317 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1317&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1317&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1316&r2=1.1317
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.1316
18 retrieving revision 1.1317
19 diff -u -r1.1316 -r1.1317
20 --- ChangeLog 7 Jul 2014 12:43:35 -0000 1.1316
21 +++ ChangeLog 7 Jul 2014 14:41:56 -0000 1.1317
22 @@ -1,6 +1,9 @@
23 # ChangeLog for eclass directory
24 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1316 2014/07/07 12:43:35 haubi Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1317 2014/07/07 14:41:56 mgorny Exp $
27 +
28 + 07 Jul 2014; Michał Górny <mgorny@g.o> git-r3.eclass:
29 + Stop forcing -m0755 on EGIT3_STORE_DIR and parents, bug #516508.
30
31 07 Jul 2014; Michael Haubenwallner <haubi@g.o>
32 ELT-patches/aixrtl/1.5.0-cmds-c, ELT-patches/aixrtl/1.5.0-cmds-cxx,
33
34
35
36 1.45 eclass/git-r3.eclass
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-r3.eclass?rev=1.45&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-r3.eclass?rev=1.45&content-type=text/plain
40 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-r3.eclass?r1=1.44&r2=1.45
41
42 Index: git-r3.eclass
43 ===================================================================
44 RCS file: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v
45 retrieving revision 1.44
46 retrieving revision 1.45
47 diff -u -r1.44 -r1.45
48 --- git-r3.eclass 20 Jun 2014 11:40:28 -0000 1.44
49 +++ git-r3.eclass 7 Jul 2014 14:41:56 -0000 1.45
50 @@ -1,6 +1,6 @@
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 -# $Header: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v 1.44 2014/06/20 11:40:28 mgorny Exp $
54 +# $Header: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v 1.45 2014/07/07 14:41:56 mgorny Exp $
55
56 # @ECLASS: git-r3.eclass
57 # @MAINTAINER:
58 @@ -302,7 +302,7 @@
59 if [[ ! -d ${EGIT3_STORE_DIR} ]]; then
60 (
61 addwrite /
62 - mkdir -m0755 -p "${EGIT3_STORE_DIR}" || die
63 + mkdir -p "${EGIT3_STORE_DIR}" || die
64 ) || die "Unable to create ${EGIT3_STORE_DIR}"
65 fi