diff options
author | 2001-07-30 20:21:34 +0000 | |
---|---|---|
committer | 2001-07-30 20:21:34 +0000 | |
commit | aea55a081e1b79478930f7f643feeb4500c34138 (patch) | |
tree | f81d2d89a03602a9046b2115b7f19264a3844115 /sys-devel | |
parent | adding net-irc/xchat-1.8.1 becuase I can't determine whether it's broken or n... (diff) | |
download | gentoo-2-aea55a081e1b79478930f7f643feeb4500c34138.tar.gz gentoo-2-aea55a081e1b79478930f7f643feeb4500c34138.tar.bz2 gentoo-2-aea55a081e1b79478930f7f643feeb4500c34138.zip |
fixed a build problem
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/perl/perl-5.6.1-r1.ebuild | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/sys-devel/perl/perl-5.6.1-r1.ebuild b/sys-devel/perl/perl-5.6.1-r1.ebuild index 1505d32c8f47..afc48d87524a 100644 --- a/sys-devel/perl/perl-5.6.1-r1.ebuild +++ b/sys-devel/perl/perl-5.6.1-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-devel/perl/perl-5.6.1-r1.ebuild,v 1.1 2001/06/27 02:14:40 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/perl/perl-5.6.1-r1.ebuild,v 1.2 2001/07/30 20:21:34 pete Exp $ A=${P}.tar.gz @@ -70,10 +70,15 @@ EOF sed -e "s/optimize='-O2'/optimize=\'${CFLAGS}\'/" config.sh.orig > config.sh #THIS IS USED LATER: export PARCH=`grep myarchname config.sh | cut -f2 -d"'"` - cp makefile makefile.orig - sed -e "s:^0::" makefile.orig > makefile + +# Umm, for some reason this doesn't want to work, so we'll just remove +# the makefiles and let make rebuild them itself. (It seems to do it +# right the second time... -- pete +# cp makefile makefile.orig +# sed -e "s:^0::" makefile.orig > makefile + rm -f makefile x2p/makefile try make - # Parallell make failes + # Parallel make failes make test } @@ -133,7 +138,3 @@ EOF prepalldocs } - - - - |