All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-java][PATCH] java-library: make easy to override jar package name
@ 2018-11-23 14:37 Nicola Lunghi
  2018-11-23 15:05 ` ✗ patchtest: failure for java-library: make easy to override jar package name (rev2) Patchwork
  0 siblings, 1 reply; 2+ messages in thread
From: Nicola Lunghi @ 2018-11-23 14:37 UTC (permalink / raw)
  To: openembedded-core

define JARFILENAME and ALTJARFILENAMES with ?= to make simple
to override them

Signed-off-by: Nicola Lunghi <nick83ola@gmail.com>
---
 classes/java-library.bbclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/classes/java-library.bbclass b/classes/java-library.bbclass
index ce1cd28..c69cf6b 100644
--- a/classes/java-library.bbclass
+++ b/classes/java-library.bbclass
@@ -42,10 +42,10 @@ PACKAGES += "${JPN}"
 FILES_${JPN} = "${datadir_java}"
 
 # File name of the libraries' main Jar file
-JARFILENAME = "${BP}.jar"
+JARFILENAME ?= "${BP}.jar"
 
 # Space-separated list of alternative file names.
-ALTJARFILENAMES = "${BPN}.jar"
+ALTJARFILENAMES ?= "${BPN}.jar"
 
 # Java "source" distributions often contain precompiled things
 # we want to delete first.
-- 
2.19.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-11-23 15:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-23 14:37 [meta-java][PATCH] java-library: make easy to override jar package name Nicola Lunghi
2018-11-23 15:05 ` ✗ patchtest: failure for java-library: make easy to override jar package name (rev2) Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.