diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-12-07 00:47:17 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-12-07 00:47:17 +0000 |
commit | 9654b0c4ead423486f09662dadf9f76e933b6f34 (patch) | |
tree | 5da0617ac7dada480df08331f874868b042fc1c2 | |
parent | c6decb18f1d3b917b5b44853d129cfd59f769423 (diff) | |
download | portage-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
-rwxr-xr-x | bin/ebuild.sh | 4 |
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 |