diff options
author | Mike Gardiner <obz@gentoo.org> | 2004-01-31 10:21:08 +0000 |
---|---|---|
committer | Mike Gardiner <obz@gentoo.org> | 2004-01-31 10:21:08 +0000 |
commit | 70f06de30623b657314bcc11ee57a93b0e513009 (patch) | |
tree | 3553b5d49461b1f9c053661225916a0fa520370e /app-text/sablotron/sablotron-1.0.ebuild | |
parent | Referenced the wrong bug in the 3.32 ebuild, fixed typo now (Manifest recommit) (diff) | |
download | gentoo-2-70f06de30623b657314bcc11ee57a93b0e513009.tar.gz gentoo-2-70f06de30623b657314bcc11ee57a93b0e513009.tar.bz2 gentoo-2-70f06de30623b657314bcc11ee57a93b0e513009.zip |
Fixed installation of sablot-config, by passing prefix= to einstall instead of econf. See bug #39575 for more
Diffstat (limited to 'app-text/sablotron/sablotron-1.0.ebuild')
-rw-r--r-- | app-text/sablotron/sablotron-1.0.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app-text/sablotron/sablotron-1.0.ebuild b/app-text/sablotron/sablotron-1.0.ebuild index 1aa079e2c7bd..d5454032759d 100644 --- a/app-text/sablotron/sablotron-1.0.ebuild +++ b/app-text/sablotron/sablotron-1.0.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-text/sablotron/sablotron-1.0.ebuild,v 1.4 2004/01/10 16:00:20 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/sablotron/sablotron-1.0.ebuild,v 1.5 2004/01/31 10:21:08 obz Exp $ inherit libtool @@ -44,14 +44,14 @@ src_compile() { # is added <obz@gentoo.org> export LDFLAGS="-lstdc++" - econf ${myconf} --prefix=${D} || die "Configure failed" + econf ${myconf} || die "Configure failed" emake || die "Make failed" } src_install() { - einstall || die "Install failed" + einstall prefix=${D}/usr || die "Install failed" dodoc ${DOCS} } |