From: Zac Medico Date: Sun, 10 Aug 2008 01:02:54 +0000 (-0000) Subject: Eliminate duplicate code by making _eapi1_src_compile() call _eapi2_src_configure(). X-Git-Tag: v2.2_rc7~12 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=b6956463bf86dc9324ab1dc9cf16e4f8928c1629;p=portage.git Eliminate duplicate code by making _eapi1_src_compile() call _eapi2_src_configure(). svn path=/main/trunk/; revision=11379 --- diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 84c928771..67f0d3aca 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -623,9 +623,7 @@ _eapi0_src_test() { } _eapi1_src_compile() { - if [[ -x ${ECONF_SOURCE:-.}/configure ]] ; then - econf - fi + _eapi2_src_configure _eapi2_src_compile }