summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-06-08 21:40:53 +0000
committerZac Medico <zmedico@gentoo.org>2007-06-08 21:40:53 +0000
commit9f78cce938af52c3a978a5b76a952c7e8c11fd4d (patch)
treed85029671b7790ad93fde68329b8077b361f37e5 /bin
parent490d2f4e478c922d9cbd3dafc2e84f795446d745 (diff)
downloadportage-9f78cce938af52c3a978a5b76a952c7e8c11fd4d.tar.gz
portage-9f78cce938af52c3a978a5b76a952c7e8c11fd4d.tar.bz2
portage-9f78cce938af52c3a978a5b76a952c7e8c11fd4d.zip
For bug #181104, make econf give an appropriate error message when configure is not executable.
svn path=/main/trunk/; revision=6766
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ebuild.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index e533ca31d..ea1cd8290 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -502,6 +502,8 @@ econf() {
fi
die "econf failed"
fi
+ elif [ -f "${ECONF_SOURCE:-.}/configure" ]; then
+ die "configure is not executable"
else
die "no configure script found"
fi