summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Birchinger <joker@gentoo.org>2004-05-07 15:04:34 +0000
committerChristian Birchinger <joker@gentoo.org>2004-05-07 15:04:34 +0000
commitf69aa4bb81f44d1f9ec34ae1061d9a47d643ff39 (patch)
treeab78fdbf0747b836b7b44d203a7e05d8e04d5728 /app-editors
parentMove CFLAGS filtering stuff inside of src_unpack (Manifest recommit) (diff)
downloadgentoo-2-f69aa4bb81f44d1f9ec34ae1061d9a47d643ff39.tar.gz
gentoo-2-f69aa4bb81f44d1f9ec34ae1061d9a47d643ff39.tar.bz2
gentoo-2-f69aa4bb81f44d1f9ec34ae1061d9a47d643ff39.zip
Moved replace-flags from global section into src_compile
Diffstat (limited to 'app-editors')
-rw-r--r--app-editors/joe/joe-3.0-r1.ebuild8
1 files changed, 4 insertions, 4 deletions
diff --git a/app-editors/joe/joe-3.0-r1.ebuild b/app-editors/joe/joe-3.0-r1.ebuild
index ea83cd80f1f9..ba045c0f188f 100644
--- a/app-editors/joe/joe-3.0-r1.ebuild
+++ b/app-editors/joe/joe-3.0-r1.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-editors/joe/joe-3.0-r1.ebuild,v 1.1 2004/05/07 14:20:31 joker Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/joe/joe-3.0-r1.ebuild,v 1.2 2004/05/07 15:04:34 joker Exp $
IUSE=""
@@ -18,9 +18,6 @@ DEPEND=">=sys-libs/ncurses-5.2-r2"
PROVIDE="virtual/editor"
-# Bug 34609 (joe 2.9.8 editor seg-faults on 'find and replace' when compiled with -Os)
-replace-flags "-Os" "-O2"
-
src_unpack() {
unpack ${A}
cd ${S}
@@ -32,6 +29,9 @@ src_unpack() {
}
src_compile() {
+ # Bug 34609 (joe 2.9.8 editor seg-faults on 'find and replace' when compiled with -Os)
+ replace-flags "-Os" "-O2"
+
econf || die
make || die
}