diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2016-06-08 20:08:34 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2016-06-08 20:08:34 (GMT) |
commit | b06f00fac307e51b145cc96339f5c1c4758f0aec (patch) | |
tree | 7e218afa5faee011aa69914c63cd6ba031c2a694 /fortran | |
parent | e755905fae82d7cf4f930c3c88e507e3fcc1b2b4 (diff) | |
download | hdf5-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.
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/src/h5fc.in | 2 |
1 files changed, 1 insertions, 1 deletions
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" |