Gentoo Archives: gentoo-commits

From: "Petteri Raty (betelgeuse)" <betelgeuse@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: findlib.eclass
Date: Sat, 02 Feb 2008 21:10:20
Message-Id: E1JLPcu-0002C7-OX@stork.gentoo.org
1 betelgeuse 08/02/02 21:10:16
2
3 Modified: findlib.eclass
4 Log:
5 Use die instead of exit.
6
7 Revision Changes Path
8 1.7 eclass/findlib.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/findlib.eclass?rev=1.7&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/findlib.eclass?rev=1.7&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/findlib.eclass?r1=1.6&r2=1.7
13
14 Index: findlib.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/findlib.eclass,v
17 retrieving revision 1.6
18 retrieving revision 1.7
19 diff -u -r1.6 -r1.7
20 --- findlib.eclass 2 Feb 2008 21:05:33 -0000 1.6
21 +++ findlib.eclass 2 Feb 2008 21:10:16 -0000 1.7
22 @@ -1,9 +1,11 @@
23 # Copyright 1999-2004 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/findlib.eclass,v 1.6 2008/02/02 21:05:33 betelgeuse Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/findlib.eclass,v 1.7 2008/02/02 21:10:16 betelgeuse Exp $
27 #
28 -# Origianl author : Matthieu Sozeau <mattam@g.o> (retired)
29 +# Original author : Matthieu Sozeau <mattam@g.o> (retired)
30 #
31 +# Changes: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/findlib.eclass?view=log
32 +#
33 # ocamlfind (a.k.a. findlib) eclass
34 #
35
36 @@ -15,9 +17,9 @@
37 check_ocamlfind() {
38 if [ ! -x /usr/bin/ocamlfind ]
39 then
40 - ewarn "In findlib.eclass: could not find the ocamlfind executable"
41 - ewarn "Please report this bug on gentoo's bugzilla, assigning to ml@g.o"
42 - exit 1
43 + eerror "In findlib.eclass: could not find the ocamlfind executable"
44 + eerror "Please report this bug on gentoo's bugzilla, assigning to ml@g.o"
45 + die "ocamlfind executabled not found"
46 fi
47 }
48
49
50
51
52 --
53 gentoo-commits@l.g.o mailing list