[svn-r30058] Correct typo in compile scripts that causes dropping of filename in -o outfile.

Addresses HDFFV-9530 and HDFFV-9938.
This commit is contained in:
Larry Knox 2016-06-08 15:14:32 -05:00
parent 2e6ccbfff8
commit 3b507bb8c4
3 changed files with 3 additions and 3 deletions

View File

@ -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"

View File

@ -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"

View File

@ -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"