diff options
author | Michał Górny <mgorny@gentoo.org> | 2014-12-21 14:29:37 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2014-12-21 14:29:37 +0000 |
commit | 9988005d86f643f82ba87585a69627162871b6d8 (patch) | |
tree | 6b5b3f241c271483b32b0fcd07858fd72bcc82a7 /eclass | |
parent | Move stable keywords. (diff) | |
download | historical-9988005d86f643f82ba87585a69627162871b6d8.tar.gz historical-9988005d86f643f82ba87585a69627162871b6d8.tar.bz2 historical-9988005d86f643f82ba87585a69627162871b6d8.zip |
Use gentoo-functions for tests, bug #504378.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/tests/tests-common.sh | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 7181058a4f7d..f2dada71f310 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1469 2014/12/21 12:25:49 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1470 2014/12/21 14:29:37 mgorny Exp $ + + 21 Dec 2014; Michał Górny <mgorny@gentoo.org> tests/tests-common.sh: + Use gentoo-functions for tests, bug #504378. 21 Dec 2014; Gilles Dartiguelongue <eva@gentoo.org> vala.eclass: Add support for vala 0.26. diff --git a/eclass/tests/tests-common.sh b/eclass/tests/tests-common.sh index 131b78720834..26ebcacdcd43 100644 --- a/eclass/tests/tests-common.sh +++ b/eclass/tests/tests-common.sh @@ -1,7 +1,7 @@ #!/bin/bash -if ! source /etc/init.d/functions.sh ; then - echo "Missing functions.sh. Please to install!" 1>&2 +if ! source /lib/gentoo/functions.sh ; then + echo "Missing functions.sh. Please install sys-apps/gentoo-functions!" 1>&2 exit 1 fi |