From 77099ba3bca48c2b7fcfe85aae62ec13b94a66eb Mon Sep 17 00:00:00 2001
From: Larry Knox <lrknox@hdfgroup.org>
Date: Mon, 23 May 2016 17:02:08 -0500
Subject: [svn-r29954] */run*-ex.sh.in:     Scripts to compile and run
 installed needed relative paths to the installed bin directory instead of the
 ablsolute path from $prefix (on the build machines).

Committing changes to version strings generated by running bin/release for HDF5 1.10.0-patch1.
---
 README.txt                                 | 2 +-
 c++/examples/run-c++-ex.sh.in              | 2 +-
 c++/src/Makefile.in                        | 6 +++---
 config/lt_vers.am                          | 6 +++---
 examples/run-c-ex.sh.in                    | 2 +-
 fortran/examples/run-fortran-ex.sh.in      | 2 +-
 fortran/src/Makefile.in                    | 6 +++---
 hl/c++/examples/run-hlc++-ex.sh.in         | 2 +-
 hl/c++/src/Makefile.in                     | 6 +++---
 hl/examples/run-hlc-ex.sh.in               | 2 +-
 hl/fortran/examples/run-hlfortran-ex.sh.in | 2 +-
 hl/fortran/src/Makefile.in                 | 6 +++---
 hl/src/Makefile.in                         | 6 +++---
 java/src/jni/Makefile.in                   | 6 +++---
 release_docs/RELEASE.txt                   | 2 +-
 src/Makefile.in                            | 6 +++---
 16 files changed, 32 insertions(+), 32 deletions(-)

diff --git a/README.txt b/README.txt
index 799bc98..bffbda8 100644
--- a/README.txt
+++ b/README.txt
@@ -1,4 +1,4 @@
-HDF5 version 1.10.0-patch1 released on 2016-05-16
+HDF5 version 1.10.0-patch1 released on 2016-05-23
 Please refer to the release_docs/INSTALL file for installation instructions.
 ------------------------------------------------------------------------------
 
diff --git a/c++/examples/run-c++-ex.sh.in b/c++/examples/run-c++-ex.sh.in
index eae2782..c291bb2 100644
--- a/c++/examples/run-c++-ex.sh.in
+++ b/c++/examples/run-c++-ex.sh.in
@@ -34,7 +34,7 @@ EXIT_FAILURE=1
 
 # Where the tool is installed.
 # default is relative path to installed location of the tools
-prefix="${prefix:-@prefix@}"
+prefix="${prefix:-../../..}"
 AR="@AR@"
 RANLIB="@RANLIB@"
 H5TOOL="h5c++"                  # The tool name
diff --git a/c++/src/Makefile.in b/c++/src/Makefile.in
index 4479889..cdd0756 100644
--- a/c++/src/Makefile.in
+++ b/c++/src/Makefile.in
@@ -746,13 +746,13 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2
 # After making changes, run bin/reconfigure to update other configure related
 # files like Makefile.in.
 LT_VERS_INTERFACE = 100
-LT_VERS_REVISION = 0
+LT_VERS_REVISION = 1
 LT_VERS_AGE = 0
 LT_CXX_VERS_INTERFACE = 100
 LT_CXX_VERS_REVISION = 0
 LT_CXX_VERS_AGE = 0
 LT_F_VERS_INTERFACE = 100
-LT_F_VERS_REVISION = 0
+LT_F_VERS_REVISION = 1
 LT_F_VERS_AGE = 0
 LT_HL_VERS_INTERFACE = 100
 LT_HL_VERS_REVISION = 0
@@ -767,7 +767,7 @@ LT_JAVA_VERS_INTERFACE = 100
 LT_JAVA_VERS_REVISION = 0
 LT_JAVA_VERS_AGE = 0
 LT_TOOLS_VERS_INTERFACE = 100
-LT_TOOLS_VERS_REVISION = 0
+LT_TOOLS_VERS_REVISION = 1
 LT_TOOLS_VERS_AGE = 0
 
 # This is our main target
diff --git a/config/lt_vers.am b/config/lt_vers.am
index c6a5c03..74739bc 100644
--- a/config/lt_vers.am
+++ b/config/lt_vers.am
@@ -19,7 +19,7 @@
 # After making changes, run bin/reconfigure to update other configure related
 # files like Makefile.in.
 LT_VERS_INTERFACE = 100
-LT_VERS_REVISION = 0
+LT_VERS_REVISION = 1
 LT_VERS_AGE = 0
 
 ## If the API changes *at all*, increment LT_VERS_INTERFACE and
@@ -46,7 +46,7 @@ LT_CXX_VERS_REVISION = 0
 LT_CXX_VERS_AGE = 0
 
 LT_F_VERS_INTERFACE = 100
-LT_F_VERS_REVISION = 0
+LT_F_VERS_REVISION = 1
 LT_F_VERS_AGE = 0
 
 LT_HL_VERS_INTERFACE = 100
@@ -66,7 +66,7 @@ LT_JAVA_VERS_REVISION = 0
 LT_JAVA_VERS_AGE = 0
 
 LT_TOOLS_VERS_INTERFACE = 100
-LT_TOOLS_VERS_REVISION = 0
+LT_TOOLS_VERS_REVISION = 1
 LT_TOOLS_VERS_AGE = 0
 
 # Copyright by The HDF Group.
diff --git a/examples/run-c-ex.sh.in b/examples/run-c-ex.sh.in
index 1661344..2158f37 100644
--- a/examples/run-c-ex.sh.in
+++ b/examples/run-c-ex.sh.in
@@ -33,7 +33,7 @@ EXIT_FAILURE=1
  
 # Where the tool is installed.
 # default is relative path to installed location of the tools 
-prefix="${prefix:-@prefix@}"
+prefix="${prefix:-../../..}"
 PARALLEL=@PARALLEL@             # Am I in parallel mode?
 AR="@AR@"
 RANLIB="@RANLIB@"
diff --git a/fortran/examples/run-fortran-ex.sh.in b/fortran/examples/run-fortran-ex.sh.in
index a4d4550..ce1798d 100644
--- a/fortran/examples/run-fortran-ex.sh.in
+++ b/fortran/examples/run-fortran-ex.sh.in
@@ -34,7 +34,7 @@ EXIT_FAILURE=1
 
 # Where the tool is installed.
 # default is relative path to installed location of the tools
-prefix="${prefix:-@prefix@}"
+prefix="${prefix:-../../..}"
 PARALLEL=@PARALLEL@             # Am I in parallel mode?
 AR="@AR@"
 RANLIB="@RANLIB@"
diff --git a/fortran/src/Makefile.in b/fortran/src/Makefile.in
index a4d2f9d..1fe40e3 100644
--- a/fortran/src/Makefile.in
+++ b/fortran/src/Makefile.in
@@ -774,13 +774,13 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2
 # After making changes, run bin/reconfigure to update other configure related
 # files like Makefile.in.
 LT_VERS_INTERFACE = 100
-LT_VERS_REVISION = 0
+LT_VERS_REVISION = 1
 LT_VERS_AGE = 0
 LT_CXX_VERS_INTERFACE = 100
 LT_CXX_VERS_REVISION = 0
 LT_CXX_VERS_AGE = 0
 LT_F_VERS_INTERFACE = 100
-LT_F_VERS_REVISION = 0
+LT_F_VERS_REVISION = 1
 LT_F_VERS_AGE = 0
 LT_HL_VERS_INTERFACE = 100
 LT_HL_VERS_REVISION = 0
@@ -795,7 +795,7 @@ LT_JAVA_VERS_INTERFACE = 100
 LT_JAVA_VERS_REVISION = 0
 LT_JAVA_VERS_AGE = 0
 LT_TOOLS_VERS_INTERFACE = 100
-LT_TOOLS_VERS_REVISION = 0
+LT_TOOLS_VERS_REVISION = 1
 LT_TOOLS_VERS_AGE = 0
 AM_FCLIBS = $(LIBHDF5)
 
diff --git a/hl/c++/examples/run-hlc++-ex.sh.in b/hl/c++/examples/run-hlc++-ex.sh.in
index 5aa1032..c3f9ce3 100644
--- a/hl/c++/examples/run-hlc++-ex.sh.in
+++ b/hl/c++/examples/run-hlc++-ex.sh.in
@@ -33,7 +33,7 @@ EXIT_SUCCESS=0
 EXIT_FAILURE=1
 # Where the tool is installed.
 # default is relative path to installed location of the tools
-prefix="${prefix:-@prefix@}"
+prefix="${prefix:-../../../..}"
 AR="@AR@"
 RANLIB="@RANLIB@"
 H5TOOL="h5c++"                  # The tool name
diff --git a/hl/c++/src/Makefile.in b/hl/c++/src/Makefile.in
index 90694e2..e5d733a 100644
--- a/hl/c++/src/Makefile.in
+++ b/hl/c++/src/Makefile.in
@@ -736,13 +736,13 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2
 # After making changes, run bin/reconfigure to update other configure related
 # files like Makefile.in.
 LT_VERS_INTERFACE = 100
-LT_VERS_REVISION = 0
+LT_VERS_REVISION = 1
 LT_VERS_AGE = 0
 LT_CXX_VERS_INTERFACE = 100
 LT_CXX_VERS_REVISION = 0
 LT_CXX_VERS_AGE = 0
 LT_F_VERS_INTERFACE = 100
-LT_F_VERS_REVISION = 0
+LT_F_VERS_REVISION = 1
 LT_F_VERS_AGE = 0
 LT_HL_VERS_INTERFACE = 100
 LT_HL_VERS_REVISION = 0
@@ -757,7 +757,7 @@ LT_JAVA_VERS_INTERFACE = 100
 LT_JAVA_VERS_REVISION = 0
 LT_JAVA_VERS_AGE = 0
 LT_TOOLS_VERS_INTERFACE = 100
-LT_TOOLS_VERS_REVISION = 0
+LT_TOOLS_VERS_REVISION = 1
 LT_TOOLS_VERS_AGE = 0
 
 # This is our main target
diff --git a/hl/examples/run-hlc-ex.sh.in b/hl/examples/run-hlc-ex.sh.in
index d897a02..1848273 100644
--- a/hl/examples/run-hlc-ex.sh.in
+++ b/hl/examples/run-hlc-ex.sh.in
@@ -33,7 +33,7 @@ EXIT_FAILURE=1
 
 # Where the tool is installed.
 # default is relative path to installed location of the tools
-prefix="${prefix:-@prefix@}"
+prefix="${prefix:-../../../..}"
 PARALLEL=@PARALLEL@             # Am I in parallel mode?
 AR="@AR@"
 RANLIB="@RANLIB@"
diff --git a/hl/fortran/examples/run-hlfortran-ex.sh.in b/hl/fortran/examples/run-hlfortran-ex.sh.in
index 12f9fec..d17b10b 100644
--- a/hl/fortran/examples/run-hlfortran-ex.sh.in
+++ b/hl/fortran/examples/run-hlfortran-ex.sh.in
@@ -34,7 +34,7 @@ EXIT_FAILURE=1
 
 # Where the tool is installed.
 # default is relative path to installed location of the tools
-prefix="${prefix:-@prefix@}"
+prefix="${prefix:-../../../..}"
 PARALLEL=@PARALLEL@             # Am I in parallel mode?
 AR="@AR@"
 RANLIB="@RANLIB@"
diff --git a/hl/fortran/src/Makefile.in b/hl/fortran/src/Makefile.in
index f1f9555..6294ae8 100644
--- a/hl/fortran/src/Makefile.in
+++ b/hl/fortran/src/Makefile.in
@@ -764,13 +764,13 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2
 # After making changes, run bin/reconfigure to update other configure related
 # files like Makefile.in.
 LT_VERS_INTERFACE = 100
-LT_VERS_REVISION = 0
+LT_VERS_REVISION = 1
 LT_VERS_AGE = 0
 LT_CXX_VERS_INTERFACE = 100
 LT_CXX_VERS_REVISION = 0
 LT_CXX_VERS_AGE = 0
 LT_F_VERS_INTERFACE = 100
-LT_F_VERS_REVISION = 0
+LT_F_VERS_REVISION = 1
 LT_F_VERS_AGE = 0
 LT_HL_VERS_INTERFACE = 100
 LT_HL_VERS_REVISION = 0
@@ -785,7 +785,7 @@ LT_JAVA_VERS_INTERFACE = 100
 LT_JAVA_VERS_REVISION = 0
 LT_JAVA_VERS_AGE = 0
 LT_TOOLS_VERS_INTERFACE = 100
-LT_TOOLS_VERS_REVISION = 0
+LT_TOOLS_VERS_REVISION = 1
 LT_TOOLS_VERS_AGE = 0
 
 # Our main target, the high-level fortran library
diff --git a/hl/src/Makefile.in b/hl/src/Makefile.in
index c5d4642..0907d3f 100644
--- a/hl/src/Makefile.in
+++ b/hl/src/Makefile.in
@@ -735,13 +735,13 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2
 # After making changes, run bin/reconfigure to update other configure related
 # files like Makefile.in.
 LT_VERS_INTERFACE = 100
-LT_VERS_REVISION = 0
+LT_VERS_REVISION = 1
 LT_VERS_AGE = 0
 LT_CXX_VERS_INTERFACE = 100
 LT_CXX_VERS_REVISION = 0
 LT_CXX_VERS_AGE = 0
 LT_F_VERS_INTERFACE = 100
-LT_F_VERS_REVISION = 0
+LT_F_VERS_REVISION = 1
 LT_F_VERS_AGE = 0
 LT_HL_VERS_INTERFACE = 100
 LT_HL_VERS_REVISION = 0
@@ -756,7 +756,7 @@ LT_JAVA_VERS_INTERFACE = 100
 LT_JAVA_VERS_REVISION = 0
 LT_JAVA_VERS_AGE = 0
 LT_TOOLS_VERS_INTERFACE = 100
-LT_TOOLS_VERS_REVISION = 0
+LT_TOOLS_VERS_REVISION = 1
 LT_TOOLS_VERS_AGE = 0
 
 # This library is our main target.
diff --git a/java/src/jni/Makefile.in b/java/src/jni/Makefile.in
index 39879e0..97febf1 100644
--- a/java/src/jni/Makefile.in
+++ b/java/src/jni/Makefile.in
@@ -736,13 +736,13 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2
 # After making changes, run bin/reconfigure to update other configure related
 # files like Makefile.in.
 LT_VERS_INTERFACE = 100
-LT_VERS_REVISION = 0
+LT_VERS_REVISION = 1
 LT_VERS_AGE = 0
 LT_CXX_VERS_INTERFACE = 100
 LT_CXX_VERS_REVISION = 0
 LT_CXX_VERS_AGE = 0
 LT_F_VERS_INTERFACE = 100
-LT_F_VERS_REVISION = 0
+LT_F_VERS_REVISION = 1
 LT_F_VERS_AGE = 0
 LT_HL_VERS_INTERFACE = 100
 LT_HL_VERS_REVISION = 0
@@ -757,7 +757,7 @@ LT_JAVA_VERS_INTERFACE = 100
 LT_JAVA_VERS_REVISION = 0
 LT_JAVA_VERS_AGE = 0
 LT_TOOLS_VERS_INTERFACE = 100
-LT_TOOLS_VERS_REVISION = 0
+LT_TOOLS_VERS_REVISION = 1
 LT_TOOLS_VERS_AGE = 0
 
 # Mark this directory as part of the JNI API
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 37813be..1133ae8 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -1,4 +1,4 @@
-HDF5 version 1.10.0-patch1 released on 2016-05-16
+HDF5 version 1.10.0-patch1 released on 2016-05-23
 ================================================================================
 
 
diff --git a/src/Makefile.in b/src/Makefile.in
index 1ab9f9f..8a4ad02 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -861,13 +861,13 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog *.clog2
 # After making changes, run bin/reconfigure to update other configure related
 # files like Makefile.in.
 LT_VERS_INTERFACE = 100
-LT_VERS_REVISION = 0
+LT_VERS_REVISION = 1
 LT_VERS_AGE = 0
 LT_CXX_VERS_INTERFACE = 100
 LT_CXX_VERS_REVISION = 0
 LT_CXX_VERS_AGE = 0
 LT_F_VERS_INTERFACE = 100
-LT_F_VERS_REVISION = 0
+LT_F_VERS_REVISION = 1
 LT_F_VERS_AGE = 0
 LT_HL_VERS_INTERFACE = 100
 LT_HL_VERS_REVISION = 0
@@ -882,7 +882,7 @@ LT_JAVA_VERS_INTERFACE = 100
 LT_JAVA_VERS_REVISION = 0
 LT_JAVA_VERS_AGE = 0
 LT_TOOLS_VERS_INTERFACE = 100
-LT_TOOLS_VERS_REVISION = 0
+LT_TOOLS_VERS_REVISION = 1
 LT_TOOLS_VERS_AGE = 0
 
 # Our main target, the HDF5 library
-- 
cgit v0.12