summaryrefslogtreecommitdiff
path: root/scripting/Jar_Highlight.mk
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-03-23 16:11:42 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-03-23 16:20:17 +0100
commit0b9fda25f321ce2697179064e330843237177668 (patch)
tree9be4cf5c4cc7a6f0a6c5d0bf02ae09bd7cd87a5d /scripting/Jar_Highlight.mk
parentdd6c4f4db1d62268d73e09ae52d23f760a967dcc (diff)
fdo#46102: Fix Java script examples after gbuild'ification
...they contained no class files anymore, due to missing gb_Jar_set_packageroot calls. However, those calls only work for subdirectories, i.e., the example .java files need to be put into a package (I chose org.libreoffice.example.java_scripts) for all of them). This in turn required adaption of the parcel-descriptor.xml files; not sure what the logicalname entries there are good for if anything -- the macro names at "Tools - Macros - Run Macro..." now unfortunately(?) contain the fully qualified paths for the HelloWorld, HighlightText, and MemoryUpdate examples. There are additional examples at scripting/examples/java/ that apparently do not get packaged (but I adapted them anyway).
Diffstat (limited to 'scripting/Jar_Highlight.mk')
-rw-r--r--scripting/Jar_Highlight.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripting/Jar_Highlight.mk b/scripting/Jar_Highlight.mk
index ea46602a639e..0f9a81f706fc 100644
--- a/scripting/Jar_Highlight.mk
+++ b/scripting/Jar_Highlight.mk
@@ -39,4 +39,6 @@ $(eval $(call gb_Jar_add_sourcefiles,Highlight,\
scripting/examples/java/Highlight/HighlightText \
))
+$(eval $(call gb_Jar_set_packageroot,Highlight,org))
+
# vim: set noet sw=4 ts=4: