summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaleb Tennis <caleb@gentoo.org>2007-08-02 11:22:40 +0000
committerCaleb Tennis <caleb@gentoo.org>2007-08-02 11:22:40 +0000
commitc0032bad2bcc1d3bbb7e72bc53ccf7bfe507d0f3 (patch)
tree23da916790031fc36a0a7d8f043566534a64c8a6 /eclass/qt3.eclass
parentrc1, keywords dropped. (diff)
downloadgentoo-2-c0032bad2bcc1d3bbb7e72bc53ccf7bfe507d0f3.tar.gz
gentoo-2-c0032bad2bcc1d3bbb7e72bc53ccf7bfe507d0f3.tar.bz2
gentoo-2-c0032bad2bcc1d3bbb7e72bc53ccf7bfe507d0f3.zip
Fix debug flag per bug #187479
Diffstat (limited to 'eclass/qt3.eclass')
-rw-r--r--eclass/qt3.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/qt3.eclass b/eclass/qt3.eclass
index 15f6efb206fc..74e0c566594c 100644
--- a/eclass/qt3.eclass
+++ b/eclass/qt3.eclass
@@ -1,6 +1,6 @@
# Copyright 2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/qt3.eclass,v 1.28 2007/07/31 13:42:23 caleb Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/qt3.eclass,v 1.29 2007/08/02 11:22:40 caleb Exp $
#
# Author Caleb Tennis <caleb@gentoo.org>
#
@@ -16,7 +16,7 @@
inherit toolchain-funcs versionator
-IUSE="${IUSE} debug"
+IUSE="${IUSE}"
QTPKG="x11-libs/qt-"
QT3MAJORVERSIONS="3.3 3.2 3.1 3.0"
@@ -92,7 +92,7 @@ eqmake3() {
# some standard config options
local configoptplus="CONFIG += no_fixpath"
local configoptminus="CONFIG -="
- if use debug; then
+ if has debug ${IUSE} && use debug; then
configoptplus="${configoptplus} debug"
configoptminus="${configoptminus} release"
else