summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2016-06-08 20:08:34 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2016-06-08 20:08:34 (GMT)
commitb06f00fac307e51b145cc96339f5c1c4758f0aec (patch)
tree7e218afa5faee011aa69914c63cd6ba031c2a694
parente755905fae82d7cf4f930c3c88e507e3fcc1b2b4 (diff)
downloadhdf5-b06f00fac307e51b145cc96339f5c1c4758f0aec.zip
hdf5-b06f00fac307e51b145cc96339f5c1c4758f0aec.tar.gz
hdf5-b06f00fac307e51b145cc96339f5c1c4758f0aec.tar.bz2
[svn-r30057] Fix typo in compile scripts that causes filename in -o outfile to be dropped.
Addresses HDFFV-9530 and HDFFV-9938.
-rw-r--r--c++/src/h5c++.in2
-rw-r--r--fortran/src/h5fc.in2
-rw-r--r--tools/misc/h5cc.in2
3 files changed, 3 insertions, 3 deletions
diff --git a/c++/src/h5c++.in b/c++/src/h5c++.in
index 069842a..7f3c3ce 100644
--- a/c++/src/h5c++.in
+++ b/c++/src/h5c++.in
@@ -205,7 +205,7 @@ for arg in $@ ; do
compile_args="$compile_args $arg"
if test "x$do_link" = "xyes" -a -n "$output_file"; then
- compile_args="$compile_args -o $outputfile"
+ compile_args="$compile_args -o $output_file"
fi
do_link="no"
diff --git a/fortran/src/h5fc.in b/fortran/src/h5fc.in
index 6e2c9d3..f8d2182 100644
--- a/fortran/src/h5fc.in
+++ b/fortran/src/h5fc.in
@@ -182,7 +182,7 @@ for arg in $@ ; do
compile_args="$compile_args $arg"
if test "x$do_link" = "xyes" -a -n "$output_file"; then
- compile_args="$compile_args -o $outputfile"
+ compile_args="$compile_args -o $output_file"
fi
do_link="no"
diff --git a/tools/misc/h5cc.in b/tools/misc/h5cc.in
index cabd83f..1645855 100644
--- a/tools/misc/h5cc.in
+++ b/tools/misc/h5cc.in
@@ -216,7 +216,7 @@ for arg in $@ ; do
compile_args="$compile_args $arg"
if test "x$do_link" = "xyes" -a -n "$output_file"; then
- compile_args="$compile_args -o $outputfile"
+ compile_args="$compile_args -o $output_file"
fi
do_link="no"