add a status message to src_compile() like src_unpack()
authorMike Frysinger <vapier@gentoo.org>
Wed, 7 Dec 2005 00:47:17 +0000 (00:47 -0000)
committerMike Frysinger <vapier@gentoo.org>
Wed, 7 Dec 2005 00:47:17 +0000 (00:47 -0000)
svn path=/main/trunk/; revision=2342

bin/ebuild.sh

index e0a6cd56b1ab33f565cbe5ec9985926b33d6cd59..267834fd5cff5efd604f6f24449d86b34a0640eb 100755 (executable)
@@ -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