blob: 91afe44efe48c9b4bf4d60b5b832623a626b0736 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# This is to be used by recipes which rely on java-library.bbclass
# infrastructure and are a *-native recipe which needs to install
# jar files into staging.
#
# This class has nothing to do with Java's JNI.
inherit native
NATIVE_INSTALL_WORKS = "1"
do_stage () {
java_stage
}
|