diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-09-06 04:52:15 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-09-06 04:52:15 +0000 |
commit | 2c9a7a40f4f416200b6a00d0df6c7f1a8a117882 (patch) | |
tree | 01a2c7fe2be751dcf856cbdd14adb77f92953be6 | |
parent | dd0b4ff411b827d183b02cca6fcc70ae765eb3c3 (diff) | |
download | portage-2c9a7a40f4f416200b6a00d0df6c7f1a8a117882.tar.gz portage-2c9a7a40f4f416200b6a00d0df6c7f1a8a117882.tar.bz2 portage-2c9a7a40f4f416200b6a00d0df6c7f1a8a117882.zip |
make .compiled warning the same helpful format as .installed
svn path=/main/trunk/; revision=4412
-rwxr-xr-x | bin/ebuild.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index d2a40c350..abfc898cf 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -915,9 +915,9 @@ dyn_compile() { fi cp "${EBUILD}" "build-info/${PF}.ebuild" - if [ "${PORTAGE_BUILDDIR}/.compiled" -nt "${WORKDIR}" ]; then - vecho ">>> It appears that ${PN} is already compiled; skipping." - vecho ">>> (clean to force compilation)" + if [[ ${PORTAGE_BUILDDIR}/.compiled -nt ${WORKDIR} ]] ; then + vecho ">>> It appears that '${PF}' is already compiled; skipping." + vecho ">>> Remove '${PORTAGE_BUILDDIR}/.compiled' to force install." trap SIGINT SIGQUIT [ "$(type -t post_src_compile)" == "function" ] && post_src_compile return |