aboutsummaryrefslogtreecommitdiffstats
path: root/classes/java.bbclass
AgeCommit message (Collapse)Author
2009-12-16java.bbclass: stage all JAR files outside of ARCH related directoriesMarcin Juszkiewicz
When Java things are build for more then one architecture strange things happen: - first architecture builds fine - next architectures fails to build Thats due to lack of JAR files as they were built as PACKAGE_ARCH="all" but staged as PACKAGE_ARCH="TARGET_ARCH" so BitBake do not build them again but Java classes are unable to find them. Solution is to stage JAR files to non-ARCH directory. I used staging/java for it and build tested with stable/2009 and org.openembedded.dev branches. Signed-off-by: Marcin Juszkiewicz <marcin@buglabs.net>
2009-11-05java.bbclass: fixed oe_jarinstall for broken symlinksMarcin Juszkiewicz
Code checked for existance of JAR file and if it was present then it had to be removed before symlinking to it. But it was not working sometimes so we forced symlinking. Proper fix is to check "does file exists or is a symlink" which we do now. Signed-off-by: Marcin Juszkiewicz <marcin@buglabs.net>
2009-04-16java.bbclass: Use force (-f) for ln (suggested by Marcin).Robert Schuster
2009-03-14java.bbclass: Make oe_makeclasspath more flexible (partly by Marcin ↵Robert Schuster
Juszkiewicz <hrw@openembedded.org>) - converted tabs to spaces - allow entries which have no corresponding jar file (just skip) - document that behavior
2008-10-22java.bbclass: Fixed indentation.Robert Schuster
2008-10-10java.bbclass: Make oe_makeclasspath automatically use staging or staging native.Robert Schuster
2008-10-07java.bbclass: Make oe_makeclasspath behavior more sane.Robert Schuster
* return oe_makeclasspath result in variable * check for file existence only when -s is given
2008-10-07java.bbclass: Fixed oe_makeclasspath classpath generation.Robert Schuster
2008-10-02java.bbclass: Error out if classpath entry cannot be found.Robert Schuster
2008-06-06java.bbclass:Robert Schuster
* Added libdir_jvm variable * Added STAGING_LIBDIR_JVM variable
2008-05-15java-library.bbclass: Default implementation for do_install/do_stage.Robert Schuster
java.bbclass: Added oe_makeclasspath function.
2008-02-09java.bbclass: Added function to generate very simple wrapper scripts.Robert Schuster
2008-01-17java.bbclass: New bbclass for java recipes.Robert Schuster
java-library.bbclass: New bbclass for java library (jar) recipes. swt3.3-gtk: New recipe. swt3.4-gtk: New recipe. swt3.4-gtk-hildon: New recipe.