summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2012-10-08 19:59:59 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2012-10-08 19:59:59 +0000
commit1867fa6d73dc7e4463887c70b921eacbe02cb93f (patch)
tree6e8b7d5302c1704e69dee19d1a84cac4bc16e171 /eclass
parentversion bump (diff)
downloadgentoo-2-1867fa6d73dc7e4463887c70b921eacbe02cb93f.tar.gz
gentoo-2-1867fa6d73dc7e4463887c70b921eacbe02cb93f.tar.bz2
gentoo-2-1867fa6d73dc7e4463887c70b921eacbe02cb93f.zip
Fix typo in src_test runner: makeopts_jobs not makeopts_job.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/db.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/db.eclass b/eclass/db.eclass
index e80de161180d..48124b705e1b 100644
--- a/eclass/db.eclass
+++ b/eclass/db.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/db.eclass,v 1.46 2012/06/02 19:16:31 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/db.eclass,v 1.47 2012/10/08 19:59:59 robbat2 Exp $
# This is a common location for functions used in the sys-libs/db ebuilds
#
# Bugs: pauldv@gentoo.org
@@ -177,7 +177,7 @@ db_src_test() {
[[ -f "${t}" ]] && testbase="${t}" && break
done
echo "source ${t}" > testrunner.tcl
- echo "run_parallel $(makeopts_job) run_std" >> testrunner.tcl
+ echo "run_parallel $(makeopts_jobs) run_std" >> testrunner.tcl
tclsh testrunner.tcl
egrep -qs '^FAIL' ALL.OUT* && die "Some tests failed, please see ${S}/ALL.OUT*"