diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-04-07 23:22:08 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-04-08 01:05:52 +0200 |
commit | c923f7d2c210dc7846767fc0ac6ece2a0d7812a8 (patch) | |
tree | 4895fcbbf423daf410da5a8ef8e09ef8064c5c67 /qadevOOo | |
parent | a16060116346533923c607bd406d3fea511b41ec (diff) |
gbuild: "use" vs. "add":
Naming convention for gbuild methods:
- "add" is used for stuff that is logically a part of the target
(i.e. not registered at the Module, but defined in the target's makefile)
- "use" is used for stuff that is logically a different target
(i.e. it is registered at the Module, has it's own makefile, may be
in a different module than the target)
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/Jar_OOoRunner.mk | 2 | ||||
-rw-r--r-- | qadevOOo/Jar_OOoRunnerLight.mk | 2 | ||||
-rw-r--r-- | qadevOOo/JunitTest_qadevOOo_unoapi.mk | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/Jar_OOoRunner.mk b/qadevOOo/Jar_OOoRunner.mk index 4f59a0fae570..0a964a00350f 100644 --- a/qadevOOo/Jar_OOoRunner.mk +++ b/qadevOOo/Jar_OOoRunner.mk @@ -39,7 +39,7 @@ $(eval $(call gb_Jar_set_jarclasspath,OOoRunner,\ $(eval $(call gb_Jar_set_manifest,OOoRunner,$(SRCDIR)/qadevOOo/runner/manifest)) -$(eval $(call gb_Jar_add_jars,OOoRunner,\ +$(eval $(call gb_Jar_use_jars,OOoRunner,\ $(OUTDIR)/bin/ridl.jar \ $(OUTDIR)/bin/unoil.jar \ $(OUTDIR)/bin/jurt.jar \ diff --git a/qadevOOo/Jar_OOoRunnerLight.mk b/qadevOOo/Jar_OOoRunnerLight.mk index 63d11598fa32..1c58eef0608c 100644 --- a/qadevOOo/Jar_OOoRunnerLight.mk +++ b/qadevOOo/Jar_OOoRunnerLight.mk @@ -39,7 +39,7 @@ $(eval $(call gb_Jar_set_jarclasspath,OOoRunnerLight,\ $(eval $(call gb_Jar_set_manifest,OOoRunnerLight,$(SRCDIR)/qadevOOo/runner/manifest)) -$(eval $(call gb_Jar_add_jars,OOoRunnerLight,\ +$(eval $(call gb_Jar_use_jars,OOoRunnerLight,\ $(OUTDIR)/bin/ridl.jar \ $(OUTDIR)/bin/unoil.jar \ $(OUTDIR)/bin/jurt.jar \ diff --git a/qadevOOo/JunitTest_qadevOOo_unoapi.mk b/qadevOOo/JunitTest_qadevOOo_unoapi.mk index e048c6e5ad3b..11fdba23d9ca 100644 --- a/qadevOOo/JunitTest_qadevOOo_unoapi.mk +++ b/qadevOOo/JunitTest_qadevOOo_unoapi.mk @@ -35,7 +35,7 @@ $(eval $(call gb_JunitTest_set_defs,qadevOOo_unoapi,\ -Dorg.openoffice.test.arg.tdoc=$(SRCDIR)/qadevOOo/qa/unoapi/testdocuments \ )) -$(eval $(call gb_JunitTest_add_jars,qadevOOo_unoapi,\ +$(eval $(call gb_JunitTest_use_jars,qadevOOo_unoapi,\ $(OUTDIR)/bin/OOoRunner.jar \ $(OUTDIR)/bin/ridl.jar \ $(OUTDIR)/bin/test.jar \ |