diff options
author | 2002-08-18 23:55:03 +0000 | |
---|---|---|
committer | 2002-08-18 23:55:03 +0000 | |
commit | b20d935a72c7a82748312ed2c36dfd642cc295cd (patch) | |
tree | 6e0887b6a427308ed3a28495a3b7a157b14fcb3a /eclass/kde-functions.eclass | |
parent | gtk2 keyword support (diff) | |
download | historical-b20d935a72c7a82748312ed2c36dfd642cc295cd.tar.gz historical-b20d935a72c7a82748312ed2c36dfd642cc295cd.tar.bz2 historical-b20d935a72c7a82748312ed2c36dfd642cc295cd.zip |
replace assert-like
Diffstat (limited to 'eclass/kde-functions.eclass')
-rw-r--r-- | eclass/kde-functions.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/kde-functions.eclass b/eclass/kde-functions.eclass index de25ec030f53..c16626d2f5c1 100644 --- a/eclass/kde-functions.eclass +++ b/eclass/kde-functions.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/kde-functions.eclass,v 1.24 2002/08/14 19:46:29 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde-functions.eclass,v 1.25 2002/08/18 23:54:59 danarmak Exp $ # This contains everything except things that modify ebuild variables and functions (e.g. $P, src_compile() etc.) ECLASS=kde-functions INHERITED="$INHERITED $ECLASS" @@ -192,10 +192,10 @@ set-kdedir() { # check that we've set everything - [ -z "$PREFIX" ] && die "$FUNCNAME: Error: could not set install prefix, consult log" + [ -z "$PREFIX" ] && debug-print "$FUNCNAME: ERROR: could not set install prefix" # it used to be like this. any idea why??? #[ "${INHERITED//kde-dist}" != "${INHERITED}" -a -z "$KDEDIR" ] && die "$ECLASS: Error: couldn't set kdelibs location, consult log" - [ -z "$KDEDIR" ] && die "$FUNCNAME: Error: couldn't set kdelibs location, consult log" + [ -z "$KDEDIR" ] && debug-print "$FUNCNAME: ERROR: couldn't set kdelibs location" debug-print "$FUNCNAME: Will use the kdelibs installed in $KDEDIR, and install into $PREFIX." |