diff options
Diffstat (limited to 'app-crypt/bestcrypt/bestcrypt-1.2_p5.ebuild')
-rw-r--r-- | app-crypt/bestcrypt/bestcrypt-1.2_p5.ebuild | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/app-crypt/bestcrypt/bestcrypt-1.2_p5.ebuild b/app-crypt/bestcrypt/bestcrypt-1.2_p5.ebuild index 21868a73294d..9713806dd2d1 100644 --- a/app-crypt/bestcrypt/bestcrypt-1.2_p5.ebuild +++ b/app-crypt/bestcrypt/bestcrypt-1.2_p5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/bestcrypt/bestcrypt-1.2_p5.ebuild,v 1.3 2003/09/06 22:15:09 msterret Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/bestcrypt/bestcrypt-1.2_p5.ebuild,v 1.4 2003/10/01 09:39:25 aliz Exp $ MY_PN="bcrypt" KEYWORDS="~x86" @@ -16,11 +16,10 @@ DEPEND="virtual/linux-sources" src_unpack() { unpack ${A} for file in `find . -type f -iname Makefile*`;do - mv ${file} ${file}.orig - sed -e "s:-O[0-9]:${CFLAGS}:" \ + sed -i -e "s:-O[0-9]:${CFLAGS}:" \ -e 's%KVER =.*%KVER = $(shell readlink /usr/src/linux|sed -e "s:linux-\\([0-9]\\+\.[0-9]\\+\\)\..*:\\1:")%' \ -e "s%uname -r%readlink /usr/src/linux|sed -e 's:linux-::'%" \ - ${file}.orig > ${file} + ${file} done } |