diff options
-rwxr-xr-x | bin/ebuild.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 8e88756fc..27dce2e28 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -565,7 +565,9 @@ src_unpack() { } src_compile() { - if [ -x "${ECONF_SOURCE:-.}/configure" ] ; then + if [ -x ./configure ] ; then + econf + elif [ "${EAPI:-0}" != 0 ] && [ -x "${ECONF_SOURCE:-.}/configure" ] ; then econf fi if [ -f Makefile ] || [ -f GNUmakefile ] || [ -f makefile ]; then |