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 | 7067ccb33df6705f97335dd1ffc1474c3eed88f4 (patch) | |
tree | 56a4c570ad54319e157336aee589e8ea998b4e61 /app-emulation/nestra | |
parent | Fix for bug #25061 (diff) | |
download | historical-7067ccb33df6705f97335dd1ffc1474c3eed88f4.tar.gz historical-7067ccb33df6705f97335dd1ffc1474c3eed88f4.tar.bz2 historical-7067ccb33df6705f97335dd1ffc1474c3eed88f4.zip |
fix sed
Diffstat (limited to 'app-emulation/nestra')
-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 } |