summaryrefslogtreecommitdiffstats
path: root/bin/ebuild.sh
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-12-07 00:47:17 +0000
committerMike Frysinger <vapier@gentoo.org>2005-12-07 00:47:17 +0000
commit9654b0c4ead423486f09662dadf9f76e933b6f34 (patch)
tree5da0617ac7dada480df08331f874868b042fc1c2 /bin/ebuild.sh
parentc6decb18f1d3b917b5b44853d129cfd59f769423 (diff)
downloadportage-9654b0c4ead423486f09662dadf9f76e933b6f34.tar.gz
portage-9654b0c4ead423486f09662dadf9f76e933b6f34.tar.bz2
portage-9654b0c4ead423486f09662dadf9f76e933b6f34.zip
add a status message to src_compile() like src_unpack()
svn path=/main/trunk/; revision=2342
Diffstat (limited to 'bin/ebuild.sh')
-rwxr-xr-xbin/ebuild.sh4
1 files changed, 4 insertions, 0 deletions
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