diff options
author | 2004-06-02 02:32:17 +0000 | |
---|---|---|
committer | 2004-06-02 02:32:17 +0000 | |
commit | 6214d093b0b853c3ac579b7ffc3e5f02778027c0 (patch) | |
tree | 63c4b4ba4a64b03741e51f4eb630e28454386e4d /app-office/gnucash/gnucash-1.8.4.ebuild | |
parent | stable on amd64 (diff) | |
download | historical-6214d093b0b853c3ac579b7ffc3e5f02778027c0.tar.gz historical-6214d093b0b853c3ac579b7ffc3e5f02778027c0.tar.bz2 historical-6214d093b0b853c3ac579b7ffc3e5f02778027c0.zip |
Fix use invocation
Diffstat (limited to 'app-office/gnucash/gnucash-1.8.4.ebuild')
-rw-r--r-- | app-office/gnucash/gnucash-1.8.4.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app-office/gnucash/gnucash-1.8.4.ebuild b/app-office/gnucash/gnucash-1.8.4.ebuild index 6f0751c9a3da..c36955a0208b 100644 --- a/app-office/gnucash/gnucash-1.8.4.ebuild +++ b/app-office/gnucash/gnucash-1.8.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-1.8.4.ebuild,v 1.11 2004/01/01 15:26:02 spider Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-1.8.4.ebuild,v 1.12 2004/06/02 02:31:45 agriffis Exp $ inherit flag-o-matic libtool @@ -72,7 +72,7 @@ src_compile() { emake || die "make failed" - if [ -n "`use doc`" ]; then + if use doc; then cd ${WORKDIR}/${PN}-docs-${DOC_VER} econf --localstatedir=/var/lib || die "doc configure failed" emake || die "doc make failed" @@ -84,7 +84,7 @@ src_install() { dodoc ABOUT-NLS AUTHORS COPYING ChangeLog HACKING NEWS README* TODO dodoc docs/README* - if [ -n "`use doc`" ]; then + if use doc; then cd ${WORKDIR}/${PN}-docs-${DOC_VER} make DESTDIR=${D} \ scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper \ |