diff options
author | 2007-01-17 00:23:40 +0000 | |
---|---|---|
committer | 2007-01-17 00:23:40 +0000 | |
commit | b5f7a944db99225709b9a26929473799efccc21f (patch) | |
tree | 850218230ea173e7a6a600c05ea7b370b4e414b4 /x11-wm/wmii/wmii-3.5.1.ebuild | |
parent | Remove unneeded patch. (diff) | |
download | gentoo-2-b5f7a944db99225709b9a26929473799efccc21f.tar.gz gentoo-2-b5f7a944db99225709b9a26929473799efccc21f.tar.bz2 gentoo-2-b5f7a944db99225709b9a26929473799efccc21f.zip |
Fix sed expression. (bug #160328)
(Portage version: 2.1.2)
Diffstat (limited to 'x11-wm/wmii/wmii-3.5.1.ebuild')
-rw-r--r-- | x11-wm/wmii/wmii-3.5.1.ebuild | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/x11-wm/wmii/wmii-3.5.1.ebuild b/x11-wm/wmii/wmii-3.5.1.ebuild index d0aae3672b2f..2841ca619b02 100644 --- a/x11-wm/wmii/wmii-3.5.1.ebuild +++ b/x11-wm/wmii/wmii-3.5.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/wmii/wmii-3.5.1.ebuild,v 1.1 2006/12/28 07:32:42 omp Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/wmii/wmii-3.5.1.ebuild,v 1.2 2007/01/17 00:23:40 omp Exp $ inherit toolchain-funcs @@ -23,13 +23,13 @@ src_unpack() { cd "${S}" sed -i \ - -e "/^PREFIX/s/=.*/= \/usr/" \ - -e "/^CONFPREFIX/s/=.*/= \/etc/" \ - -e "/^X11INC/s/=.*/= \/usr\/include/" \ - -e "/^X11LIB/s/=.*/= \/usr\/lib/" \ - -e "/^CFLAGS/s/= -Os/+=/" \ - -e "/^LDFLAGS/s/=/+=/" \ - -e "/^CC/s/=.*/= $(tc-getCC)/" \ + -e "/^PREFIX/s|=.*|= /usr|" \ + -e "/^CONFPREFIX/s|=.*|= /etc|" \ + -e "/^X11INC/s|=.*|= /usr/include|" \ + -e "/^X11LIB/s|=.*|= /usr/lib|" \ + -e "/^CFLAGS/s|= -Os|+=|" \ + -e "/^LDFLAGS/s|=|+=|" \ + -e "/^CC/s|=.*|= $(tc-getCC)|" \ config.mk || die "sed failed" } |