From: Mike Frysinger Date: Wed, 7 Dec 2005 00:47:17 +0000 (-0000) Subject: add a status message to src_compile() like src_unpack() X-Git-Tag: v2.1_pre1~38 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9654b0c4ead423486f09662dadf9f76e933b6f34;p=portage.git add a status message to src_compile() like src_unpack() svn path=/main/trunk/; revision=2342 --- diff --git a/bin/ebuild.sh b/bin/ebuild.sh index e0a6cd56b..267834fd5 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -890,6 +890,7 @@ dyn_compile() { sleep 3 fi + local srcdir=${BUILDDIR} cd "${BUILDDIR}" if [ ! -e "build-info" ]; then mkdir build-info @@ -904,6 +905,7 @@ dyn_compile() { return fi if [ -d "${S}" ]; then + srcdir=${S} cd "${S}" fi #our custom version of libtool uses $S and $D to fix @@ -912,7 +914,9 @@ dyn_compile() { #some packages use an alternative to $S to build in, cause #our libtool to create problematic .la files export PWORKDIR="$WORKDIR" + echo ">>> Compiling source in ${srcdir} ..." src_compile + echo ">>> Source compiled." #|| abort_compile "fail" cd "${BUILDDIR}" touch .compiled