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 /nlpsolver | |
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 'nlpsolver')
-rw-r--r-- | nlpsolver/Jar_EvolutionarySolver.mk | 2 | ||||
-rw-r--r-- | nlpsolver/Jar_nlpsolver.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/nlpsolver/Jar_EvolutionarySolver.mk b/nlpsolver/Jar_EvolutionarySolver.mk index 318dd8753aaa..1ebd0c886b7a 100644 --- a/nlpsolver/Jar_EvolutionarySolver.mk +++ b/nlpsolver/Jar_EvolutionarySolver.mk @@ -28,7 +28,7 @@ $(eval $(call gb_Jar_Jar,EvolutionarySolver)) -$(eval $(call gb_Jar_add_jars,EvolutionarySolver,\ +$(eval $(call gb_Jar_use_jars,EvolutionarySolver,\ )) $(eval $(call gb_Jar_set_packageroot,EvolutionarySolver,net/adaptivebox)) diff --git a/nlpsolver/Jar_nlpsolver.mk b/nlpsolver/Jar_nlpsolver.mk index 21bc238c0960..a3db34a795fd 100644 --- a/nlpsolver/Jar_nlpsolver.mk +++ b/nlpsolver/Jar_nlpsolver.mk @@ -28,7 +28,7 @@ $(eval $(call gb_Jar_Jar,nlpsolver)) -$(eval $(call gb_Jar_add_jars,nlpsolver,\ +$(eval $(call gb_Jar_use_jars,nlpsolver,\ $(OUTDIR)/bin/ridl.jar \ $(OUTDIR)/bin/unoil.jar \ $(OUTDIR)/bin/jurt.jar \ |