Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: eutils.eclass
Date: Mon, 16 Apr 2012 14:40:27
Message-Id: 20120416144017.067F62004B@flycatcher.gentoo.org
1 vapier 12/04/16 14:40:17
2
3 Modified: eutils.eclass
4 Log:
5 fix typo pointed out by Arfrever
6
7 Revision Changes Path
8 1.390 eclass/eutils.eclass
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/eutils.eclass?rev=1.390&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/eutils.eclass?rev=1.390&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/eutils.eclass?r1=1.389&r2=1.390
13
14 Index: eutils.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v
17 retrieving revision 1.389
18 retrieving revision 1.390
19 diff -u -r1.389 -r1.390
20 --- eutils.eclass 15 Apr 2012 20:02:43 -0000 1.389
21 +++ eutils.eclass 16 Apr 2012 14:40:16 -0000 1.390
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2012 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.389 2012/04/15 20:02:43 vapier Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.390 2012/04/16 14:40:16 vapier Exp $
27
28 # @ECLASS: eutils.eclass
29 # @MAINTAINER:
30 @@ -1288,7 +1288,7 @@
31 # Searches the arguments (defaults to ${MAKEOPTS}) and extracts the jobs number
32 # specified therein. i.e. if the user has MAKEOPTS=-j9, this will show "9".
33 # We can't return the number as bash normalizes it to [0, 255]. If the flags
34 -# havn't specified a -j flag, then "1" is shown as that is the default `make`
35 +# haven't specified a -j flag, then "1" is shown as that is the default `make`
36 # uses. Useful for running non-make tools in parallel too.
37 makeopts_jobs() {
38 [[ $# -eq 0 ]] && set -- ${MAKEOPTS}