summaryrefslogtreecommitdiffstats
path: root/scripting/Module_scripting.mk
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2011-11-03 14:11:00 +0100
committerStephan Bergmann <sbergman@redhat.com>2011-11-03 14:18:59 +0100
commita72a7dc500ffd57662e8b9be61e4676266861c33 (patch)
tree6cc21e11fbaec37563ad42d5749f103c0a635146 /scripting/Module_scripting.mk
parentUse xml2-config and xslt-config from our own copies if not using system ones (diff)
downloadcore-a72a7dc500ffd57662e8b9be61e4676266861c33.tar.gz
core-a72a7dc500ffd57662e8b9be61e4676266861c33.zip
fdo#42312: Change bsh and js script providers from extensions to optional modules.
Their jar files reference other non-URE jars, so they cannot be extensions. bsh.jar has been moved into the optional module (it used to be installed always, but it looks like only the bsh script provider needs it; also, it had been added to URE_MORE_JAVA_CLASSPATH_URLS if SYSTEM_BSH, which also appears unnecessary as it is mentioned with an absolute file URL in the Class-Path of the script provider jar). js.jar has been included in the optional module (it used to be not installed at all?).
Diffstat (limited to 'scripting/Module_scripting.mk')
-rw-r--r--scripting/Module_scripting.mk10
1 files changed, 4 insertions, 6 deletions
diff --git a/scripting/Module_scripting.mk b/scripting/Module_scripting.mk
index b926b079e87b..252a1dfaad8f 100644
--- a/scripting/Module_scripting.mk
+++ b/scripting/Module_scripting.mk
@@ -30,17 +30,15 @@ $(eval $(call gb_Module_Module,scripting))
$(eval $(call gb_Module_add_targets,scripting,\
$(if $(SOLAR_JAVA),\
- $(if $(filter $(ENABLE_SCRIPTING_JAVASCRIPT),YES),\
- Extension_ScriptProviderForJavaScript) \
- $(if $(filter $(ENABLE_SCRIPTING_BEANSHELL),YES),\
- Extension_ScriptProviderForBeanShell) \
Jar_HelloWorld \
Jar_Highlight \
Jar_MemoryUsage \
Jar_ScriptFramework \
- Jar_ScriptProviderForBeanShell \
+ $(if $(filter $(ENABLE_SCRIPTING_BEANSHELL),YES),\
+ Jar_ScriptProviderForBeanShell) \
Jar_ScriptProviderForJava \
- Jar_ScriptProviderForJavaScript \
+ $(if $(filter $(ENABLE_SCRIPTING_JAVASCRIPT),YES),\
+ Jar_ScriptProviderForJavaScript) \
Zip_ScriptsJava \
) \
$(if $(filter $(ENABLE_SCRIPTING_PYTHON),YES),\