diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-08-03 19:54:52 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-08-03 19:54:52 +0000 |
commit | 7488128dbb506f653ea5100685e5150180e9bd82 (patch) | |
tree | 9cfbdbbf5fe38d9c0fccb15b22252d5e4982625e /app-emulation | |
parent | Fix for bug #25061 (diff) | |
download | gentoo-2-7488128dbb506f653ea5100685e5150180e9bd82.tar.gz gentoo-2-7488128dbb506f653ea5100685e5150180e9bd82.tar.bz2 gentoo-2-7488128dbb506f653ea5100685e5150180e9bd82.zip |
fix sed
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/nestra/nestra-0.66.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app-emulation/nestra/nestra-0.66.ebuild b/app-emulation/nestra/nestra-0.66.ebuild index 31460ac42c7a..272ff25e89a8 100644 --- a/app-emulation/nestra/nestra-0.66.ebuild +++ b/app-emulation/nestra/nestra-0.66.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/nestra/nestra-0.66.ebuild,v 1.3 2003/07/18 22:59:32 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/nestra/nestra-0.66.ebuild,v 1.4 2003/08/03 19:54:52 vapier Exp $ inherit games eutils @@ -23,8 +23,8 @@ src_unpack() { cd ${S} epatch ${WORKDIR}/${PATCH} sed -i \ - 's:-O2 ::' \ - "s:gcc:gcc ${CFLAGS}:" \ + -e 's:-O2 ::' \ + -e "s:gcc:gcc ${CFLAGS}:" \ Makefile } |