diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 21:31:19 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 21:31:19 +0000 |
commit | a48ce92b8c771b8eeed56b5791adbcb8ccaa9532 (patch) | |
tree | feaec7bcfc814a7d2c6369f36ffeef8f0a7993a2 /app-emulation/advancemame | |
parent | Changed src_install () to src_install() (diff) | |
download | gentoo-2-a48ce92b8c771b8eeed56b5791adbcb8ccaa9532.tar.gz gentoo-2-a48ce92b8c771b8eeed56b5791adbcb8ccaa9532.tar.bz2 gentoo-2-a48ce92b8c771b8eeed56b5791adbcb8ccaa9532.zip |
Changed econf||die to econf
Diffstat (limited to 'app-emulation/advancemame')
-rw-r--r-- | app-emulation/advancemame/advancemame-0.61.1.ebuild | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/app-emulation/advancemame/advancemame-0.61.1.ebuild b/app-emulation/advancemame/advancemame-0.61.1.ebuild index 448af1baa769..eaf5b22ee4d7 100644 --- a/app-emulation/advancemame/advancemame-0.61.1.ebuild +++ b/app-emulation/advancemame/advancemame-0.61.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/advancemame/advancemame-0.61.1.ebuild,v 1.4 2002/11/28 18:45:05 gerk Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/advancemame/advancemame-0.61.1.ebuild,v 1.5 2002/11/30 21:29:32 vapier Exp $ # This build we configure to explicitly use SDL, as it is very # difficult to get it working with fb or svgalib support. Anyway, @@ -68,8 +68,7 @@ src_unpack() { src_compile() { # Configure with explicit SDL support - econf --with-system=sdl || die - + econf --with-system=sdl emake || die } @@ -87,4 +86,3 @@ src_install() { dodir /usr/share/doc/${PF}/html mv ${D}/usr/share/doc/${PF}/*.html ${D}/usr/share/doc/${PF}/html } - |