diff options
author | Sven Wegener <swegener@gentoo.org> | 2008-01-05 20:24:32 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2008-01-05 20:24:32 +0000 |
commit | cb566777f87e11f741449a5855b0d7be5dedac28 (patch) | |
tree | 14ebde912fbe61f13a77ac79d5d6c2ec3fabf107 /eclass | |
parent | removing lame 2.0 ebuild, which actually preceeded the 1.3 series, duh (diff) | |
download | historical-cb566777f87e11f741449a5855b0d7be5dedac28.tar.gz historical-cb566777f87e11f741449a5855b0d7be5dedac28.tar.bz2 historical-cb566777f87e11f741449a5855b0d7be5dedac28.zip |
fix quoting
eclass/qt4.eclass: line 130: syntax error near unexpected token `('
eclass/qt4.eclass: line 130: ` eerror "(1) In order to compile ${CATEGORY}/${PN} first you need to build"'
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/qt4.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/qt4.eclass b/eclass/qt4.eclass index 26a78f4639ce..847ba9a0f5f2 100644 --- a/eclass/qt4.eclass +++ b/eclass/qt4.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/qt4.eclass,v 1.32 2008/01/05 18:44:38 caleb Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4.eclass,v 1.33 2008/01/05 20:24:32 swegener Exp $ # @ECLASS: qt4.eclass # @MAINTAINER: @@ -109,7 +109,7 @@ qt4_pkg_setup() { elif [[ ${x} == sqlite3 ]]; then if ! has_version x11-libs/qt-sql || ! built_with_use x11-libs/qt-sql sqlite; then eerror "You must first install the x11-libs/qt-sql package with the sqlite flag enabled." - die "Install x11-libs/qt-sql with USE="\sqlite\"" + die "Install x11-libs/qt-sql with USE=\"sqlite\"" fi fi elif ! built_with_use =x11-libs/qt-4* ${x}; then |