summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorDan Armak <danarmak@gentoo.org>2002-03-03 05:17:20 +0000
committerDan Armak <danarmak@gentoo.org>2002-03-03 05:17:20 +0000
commit48d9c829385593b75490c6790855bcc8df06fd88 (patch)
tree0e51a26bc4032b08b4c4000e8a7e78ac0dfad004 /eclass
parentdep fix0r (diff)
downloadgentoo-2-48d9c829385593b75490c6790855bcc8df06fd88.tar.gz
gentoo-2-48d9c829385593b75490c6790855bcc8df06fd88.tar.bz2
gentoo-2-48d9c829385593b75490c6790855bcc8df06fd88.zip
minor change - use $T
Diffstat (limited to 'eclass')
-rw-r--r--eclass/debug.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/debug.eclass b/eclass/debug.eclass
index 28215cae6be7..026f98167fda 100644
--- a/eclass/debug.eclass
+++ b/eclass/debug.eclass
@@ -1,7 +1,7 @@
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Dan Armak <danarmak@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/eclass/debug.eclass,v 1.9 2002/02/12 10:21:28 danarmak Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/debug.eclass,v 1.10 2002/03/03 05:17:20 danarmak Exp $
# This provides functions for verbose output for debugging
# redirect output, unset to disable. use e.g. /dev/stdout to write into a file/device.
@@ -25,7 +25,7 @@ debug-print() {
fi
# default target
- [ -d "$BUILD_PREFIX/$P/temp" ] && echo $1 >> ${BUILD_PREFIX}/${P}/temp/eclass-debug.log
+ [ -d "$BUILD_PREFIX/$P/temp" ] && echo $1 >> ${T}/eclass-debug.log
shift
done