diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2016-03-17 14:29:18 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2016-03-17 14:29:18 (GMT) |
commit | 83acb60e39943fe7e4772194cbdf491d4d3e86d1 (patch) | |
tree | 106a731f491629ee124569dc557c87679e760459 | |
parent | 7f8f2feaf9097e92757bd6d5743e7e17baba5f76 (diff) | |
download | hdf5-83acb60e39943fe7e4772194cbdf491d4d3e86d1.zip hdf5-83acb60e39943fe7e4772194cbdf491d4d3e86d1.tar.gz hdf5-83acb60e39943fe7e4772194cbdf491d4d3e86d1.tar.bz2 |
[svn-r29463] qualify .classes with $(top_builddir)
-rw-r--r-- | java/examples/datasets/Makefile.am | 2 | ||||
-rw-r--r-- | java/examples/datatypes/Makefile.am | 2 | ||||
-rw-r--r-- | java/examples/groups/Makefile.am | 2 | ||||
-rw-r--r-- | java/examples/intro/Makefile.am | 2 | ||||
-rw-r--r-- | java/src/Makefile.am | 2 | ||||
-rw-r--r-- | java/test/Makefile.am | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/java/examples/datasets/Makefile.am b/java/examples/datasets/Makefile.am index 49888a0..8498cff 100644 --- a/java/examples/datasets/Makefile.am +++ b/java/examples/datasets/Makefile.am @@ -23,7 +23,7 @@ include $(top_srcdir)/config/commence.am # Mark this directory as part of the JNI API JAVA_API=yes -JAVAROOT = .classes +JAVAROOT = $(top_builddir)/.classes classes: $(MKDIR_P) $(@D)/$(JAVAROOT) diff --git a/java/examples/datatypes/Makefile.am b/java/examples/datatypes/Makefile.am index de2ea9d..fedfec3 100644 --- a/java/examples/datatypes/Makefile.am +++ b/java/examples/datatypes/Makefile.am @@ -23,7 +23,7 @@ include $(top_srcdir)/config/commence.am # Mark this directory as part of the JNI API JAVA_API=yes -JAVAROOT = .classes +JAVAROOT = $(top_builddir)/.classes classes: $(MKDIR_P) $(@D)/$(JAVAROOT) diff --git a/java/examples/groups/Makefile.am b/java/examples/groups/Makefile.am index 802e2b0..181d2d9 100644 --- a/java/examples/groups/Makefile.am +++ b/java/examples/groups/Makefile.am @@ -23,7 +23,7 @@ include $(top_srcdir)/config/commence.am # Mark this directory as part of the JNI API JAVA_API=yes -JAVAROOT = .classes +JAVAROOT = $(top_builddir)/.classes classes: $(MKDIR_P) $(@D)/$(JAVAROOT) diff --git a/java/examples/intro/Makefile.am b/java/examples/intro/Makefile.am index fef33d2..af4022b 100644 --- a/java/examples/intro/Makefile.am +++ b/java/examples/intro/Makefile.am @@ -23,7 +23,7 @@ include $(top_srcdir)/config/commence.am # Mark this directory as part of the JNI API JAVA_API=yes -JAVAROOT = .classes +JAVAROOT = $(top_builddir)/.classes classes: $(MKDIR_P) $(@D)/$(JAVAROOT) diff --git a/java/src/Makefile.am b/java/src/Makefile.am index bb11230..3609f20 100644 --- a/java/src/Makefile.am +++ b/java/src/Makefile.am @@ -30,7 +30,7 @@ JAVA_API=yes SUBDIRS=jni -JAVAROOT = .classes +JAVAROOT = $(top_builddir)/.classes classes: $(MKDIR_P) $(@D)/$(JAVAROOT) diff --git a/java/test/Makefile.am b/java/test/Makefile.am index 1cb41df..d294d46 100644 --- a/java/test/Makefile.am +++ b/java/test/Makefile.am @@ -23,7 +23,7 @@ include $(top_srcdir)/config/commence.am # Mark this directory as part of the JNI API JAVA_API=yes -JAVAROOT = .classes +JAVAROOT = $(top_builddir)/.classes classes: $(MKDIR_P) $(@D)/$(JAVAROOT) |