diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2009-03-27 18:52:27 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2009-03-27 18:52:27 +0000 |
commit | 045f3183a243ede9092ad4452b3891bf0867820f (patch) | |
tree | e15aafdcd6434191ec6fd10c554472cb803980a3 /eclass | |
parent | Enabled more USE flags by default to get expected behavior on default USE fla... (diff) | |
download | historical-045f3183a243ede9092ad4452b3891bf0867820f.tar.gz historical-045f3183a243ede9092ad4452b3891bf0867820f.tar.bz2 historical-045f3183a243ede9092ad4452b3891bf0867820f.zip |
Add support for java_prepare so that we don't always have to call java-pkg-2_src_prepare in src_prepare.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/java-utils-2.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/java-utils-2.eclass b/eclass/java-utils-2.eclass index 225fa5f64854..3d5263c8324f 100644 --- a/eclass/java-utils-2.eclass +++ b/eclass/java-utils-2.eclass @@ -6,7 +6,7 @@ # # Licensed under the GNU General Public License, v2 # -# $Header: /var/cvsroot/gentoo-x86/eclass/java-utils-2.eclass,v 1.122 2009/02/19 05:10:37 serkan Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/java-utils-2.eclass,v 1.123 2009/03/27 18:52:27 betelgeuse Exp $ # ----------------------------------------------------------------------------- # @eclass-begin @@ -1819,6 +1819,7 @@ java-utils-2_src_prepare() { echo "Search done." fi touch "${T}/java-utils-2_src_prepare-run" + java-pkg_func-exists "java_prepare" && java_prepare } # ------------------------------------------------------------------------------ |