From a8783e7d9a5593b0db1c4a5961807a26426b9b50 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Mon, 1 Feb 2010 00:16:19 +0000 Subject: Binding java: use eager evalutation to get list of sources files * bindings/java/Makefile.am: use := to provoke eager evaluation so that java-list mode is not called many times. --- bindings/java/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bindings/java') diff --git a/bindings/java/Makefile.am b/bindings/java/Makefile.am index 0b9c9a14..c8e8cbe0 100644 --- a/bindings/java/Makefile.am +++ b/bindings/java/Makefile.am @@ -14,7 +14,7 @@ if WSF_ENABLED EXTRA_ARGS = --enable-id-wsf endif -java_lasso_source_files = $(shell python $(top_srcdir)/bindings/bindings.py -l java-list --src-dir=$(top_srcdir)/lasso/ $(EXTRA_ARGS) ) +java_lasso_source_files := $(shell python $(top_srcdir)/bindings/bindings.py -l java-list --src-dir=$(top_srcdir)/lasso/ $(EXTRA_ARGS) ) lasso_jardir=$(prefix)/share/java lasso_jar_DATA=lasso.jar -- cgit