From c923f7d2c210dc7846767fc0ac6ece2a0d7812a8 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Sat, 7 Apr 2012 23:22:08 +0200 Subject: 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) --- nlpsolver/Jar_EvolutionarySolver.mk | 2 +- nlpsolver/Jar_nlpsolver.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'nlpsolver') 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 \ -- cgit