diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-06-22 12:37:28 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-06-22 12:37:28 +0000 |
commit | 8d038ae01523ab69707153d3b562af59232133a6 (patch) | |
tree | 9c03ad907080e664f64e1d92e2ad51bab438069a /eclass | |
parent | Add lotus-notes license for the obvious package. (diff) | |
download | gentoo-2-8d038ae01523ab69707153d3b562af59232133a6.tar.gz gentoo-2-8d038ae01523ab69707153d3b562af59232133a6.tar.bz2 gentoo-2-8d038ae01523ab69707153d3b562af59232133a6.zip |
Add debug print
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/cuda.eclass | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 2f77b32f2071..cf3ad295a9de 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.861 2013/06/21 10:31:18 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.862 2013/06/22 12:37:28 jlec Exp $ + + 22 Jun 2013; Justin Lecher <jlec@gentoo.org> cuda.eclass: + Add debug print 21 Jun 2013; Michał Górny <mgorny@gentoo.org> multibuild.eclass: Enable EAPI 4 per bug #474000. diff --git a/eclass/cuda.eclass b/eclass/cuda.eclass index 3b63cf156e9d..5c49dd34e7a3 100644 --- a/eclass/cuda.eclass +++ b/eclass/cuda.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/cuda.eclass,v 1.1 2013/01/11 08:31:49 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/cuda.eclass,v 1.2 2013/06/22 12:37:28 jlec Exp $ inherit toolchain-funcs versionator @@ -105,6 +105,7 @@ cuda_sanitize() { # Tell nvcc which flags should be used for underlying C compiler NVCCFLAGS+=" --compiler-options=\"${CXXFLAGS}\"" + debug-print "Using ${NVCCFLAGS} for cuda" export NVCCFLAGS } |