diff options
| author | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2010-02-01 00:16:19 +0000 |
|---|---|---|
| committer | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2010-02-01 00:16:19 +0000 |
| commit | a8783e7d9a5593b0db1c4a5961807a26426b9b50 (patch) | |
| tree | 97b86d11efdd9b548a522b8b8d14bbb920abfd03 /bindings/java/Makefile.am | |
| parent | 65c56d121e1fa639791f1e96028d6b64e49f1919 (diff) | |
| download | lasso-a8783e7d9a5593b0db1c4a5961807a26426b9b50.tar.gz lasso-a8783e7d9a5593b0db1c4a5961807a26426b9b50.tar.xz lasso-a8783e7d9a5593b0db1c4a5961807a26426b9b50.zip | |
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.
Diffstat (limited to 'bindings/java/Makefile.am')
| -rw-r--r-- | bindings/java/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
