diff options
author | Vlastimil Babka <caster@gentoo.org> | 2007-05-17 21:04:43 +0000 |
---|---|---|
committer | Vlastimil Babka <caster@gentoo.org> | 2007-05-17 21:04:43 +0000 |
commit | 9b61e9ca448c52038c84b82edad595691c1d419a (patch) | |
tree | b2014b9812ca6e7c4afeccc871117c0b34df7377 /eclass | |
parent | Add src_test support and test-framework local use flag for installing the tes... (diff) | |
download | historical-9b61e9ca448c52038c84b82edad595691c1d419a.tar.gz historical-9b61e9ca448c52038c84b82edad595691c1d419a.tar.bz2 historical-9b61e9ca448c52038c84b82edad595691c1d419a.zip |
Add check for bundled class files along with jar files.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/java-pkg-2.eclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/java-pkg-2.eclass b/eclass/java-pkg-2.eclass index d5cf74c2f80c..00fde92c3d5f 100644 --- a/eclass/java-pkg-2.eclass +++ b/eclass/java-pkg-2.eclass @@ -5,7 +5,7 @@ # # Licensed under the GNU General Public License, v2 # -# $Header: /var/cvsroot/gentoo-x86/eclass/java-pkg-2.eclass,v 1.22 2007/05/07 22:10:46 caster Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/java-pkg-2.eclass,v 1.23 2007/05/17 21:04:43 caster Exp $ inherit java-utils-2 @@ -109,6 +109,9 @@ pre_src_compile() { if is-java-strict; then echo "Searching for bundled jars:" java-pkg_find-normal-jars || echo "None found." + echo "Searching for bundled classes (no output if none found):" + find "${WORKDIR}" -name "*.class" + echo "Search done." fi java-pkg-2_pkg_setup } |