diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-03-03 01:44:33 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-03-03 01:44:33 +0000 |
commit | b18e31d3c948727f3a81aa0d08c86daba4ac0661 (patch) | |
tree | 793d16524d89335d9530d6135b4854357a03b12b /sys-libs/uclibc++ | |
parent | Version bump. (diff) | |
download | gentoo-2-b18e31d3c948727f3a81aa0d08c86daba4ac0661.tar.gz gentoo-2-b18e31d3c948727f3a81aa0d08c86daba4ac0661.tar.bz2 gentoo-2-b18e31d3c948727f3a81aa0d08c86daba4ac0661.zip |
fix unpacking #124645
(Portage version: 2.1_pre5-r2)
Diffstat (limited to 'sys-libs/uclibc++')
-rw-r--r-- | sys-libs/uclibc++/uclibc++-0.2.0.ebuild | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sys-libs/uclibc++/uclibc++-0.2.0.ebuild b/sys-libs/uclibc++/uclibc++-0.2.0.ebuild index fdb4bf04aabf..2de927991870 100644 --- a/sys-libs/uclibc++/uclibc++-0.2.0.ebuild +++ b/sys-libs/uclibc++/uclibc++-0.2.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/uclibc++/uclibc++-0.2.0.ebuild,v 1.1 2006/03/01 04:36:16 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/uclibc++/uclibc++-0.2.0.ebuild,v 1.2 2006/03/03 01:44:33 vapier Exp $ inherit eutils toolchain-funcs @@ -24,12 +24,13 @@ IUSE="debug static" DEPEND="" -S=${WORKDIR}/uClibc++ +S=${WORKDIR}/uClibc++-${PV} src_unpack() { - unpack ${A} + mv "${DISTDIR}"/${A} ${A}2 + unpack ./${A}2 cd "${S}" - make defconfig || die "defconfig failed" + make -s defconfig || die "defconfig failed" local target case $(tc-arch ${CTARGET}) in @@ -52,7 +53,7 @@ src_unpack() { echo "TARGET_${target}=y" >> .config use debug && echo "CONFIG_DODEBUG=y" >> .config - yes "" | make oldconfig || die "oldconfig failed" + yes "" | make -s oldconfig || die "oldconfig failed" # has to come after make oldconfig, else it will be disabled echo "BUILD_STATIC_LIB=y" >> .config |