Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in profiles/default/bsd: ChangeLog profile.bashrc
Date: Fri, 23 Apr 2010 11:02:06
Message-Id: 20100423110200.0E2D1317E1@corvid.gentoo.org
1 aballier 10/04/23 11:01:59
2
3 Modified: ChangeLog profile.bashrc
4 Log:
5 Do not try to access $S if it does not exist.
6
7 Revision Changes Path
8 1.35 profiles/default/bsd/ChangeLog
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/ChangeLog?rev=1.35&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/ChangeLog?rev=1.35&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/ChangeLog?r1=1.34&r2=1.35
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/profiles/default/bsd/ChangeLog,v
17 retrieving revision 1.34
18 retrieving revision 1.35
19 diff -u -r1.34 -r1.35
20 --- ChangeLog 22 Apr 2010 18:30:24 -0000 1.34
21 +++ ChangeLog 23 Apr 2010 11:01:59 -0000 1.35
22 @@ -1,6 +1,10 @@
23 # ChangeLog for profile directory
24 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
25 -# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/ChangeLog,v 1.34 2010/04/22 18:30:24 aballier Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/profiles/default/bsd/ChangeLog,v 1.35 2010/04/23 11:01:59 aballier Exp $
27 +
28 + 23 Apr 2010; Alexis Ballier <aballier@g.o> fbsd/profile.bashrc,
29 + profile.bashrc:
30 + Do not try to access $S if it does not exist.
31
32 22 Apr 2010; Alexis Ballier <aballier@g.o> fbsd/package.use.mask:
33 unmask ruby[threads], seems to work
34
35
36
37 1.4 profiles/default/bsd/profile.bashrc
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/profile.bashrc?rev=1.4&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/profile.bashrc?rev=1.4&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/default/bsd/profile.bashrc?r1=1.3&r2=1.4
42
43 Index: profile.bashrc
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/profiles/default/bsd/profile.bashrc,v
46 retrieving revision 1.3
47 retrieving revision 1.4
48 diff -u -r1.3 -r1.4
49 --- profile.bashrc 4 Mar 2009 20:52:35 -0000 1.3
50 +++ profile.bashrc 23 Apr 2010 11:01:59 -0000 1.4
51 @@ -1,4 +1,4 @@
52 -if [[ ${EBUILD_PHASE} == compile ]] ; then
53 +if [[ ${EBUILD_PHASE} == compile ]] && [ -d "${S}" ] ; then
54 if grep -q "Assume that mode_t is passed compatibly" ${S} -r --include openat.c; then
55 eerror "The source code contains a faulty openat.c unit from gnulib."
56 eerror "Please report this on Gentoo Bugzilla in Gentoo/Alt product for component FreeBSD."