diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2009-04-22 19:49:22 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2009-04-22 19:49:22 (GMT) |
commit | 145782f9154b0368a80126e8413dd9fdd7561f7f (patch) | |
tree | 2bfd976203511c1ac04a4795147a5e8ce43efb5e /c++/examples | |
parent | b9b28ce4cc8ce8ed29236db7694260da0f1a7a46 (diff) | |
download | hdf5-145782f9154b0368a80126e8413dd9fdd7561f7f.zip hdf5-145782f9154b0368a80126e8413dd9fdd7561f7f.tar.gz hdf5-145782f9154b0368a80126e8413dd9fdd7561f7f.tar.bz2 |
[svn-r16838] Bug fix:
If the AR command has embedded shell separators such as the case of
"AR = ar -X 64", $AR ends up as a blank.
Solution:
Put quotes around the command substitution string to protect against embedded
separators. Applied the same to both AR and RANLIB assignments.
Tested:
At Up (AIX 5.3) only because that was where I discovered the error
when AR is ar -X 64
Diffstat (limited to 'c++/examples')
-rwxr-xr-x | c++/examples/testh5c++.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/examples/testh5c++.sh.in b/c++/examples/testh5c++.sh.in index c9474bf..2b7bbfe 100755 --- a/c++/examples/testh5c++.sh.in +++ b/c++/examples/testh5c++.sh.in @@ -22,8 +22,8 @@ # Initializations # Where the tool is installed. prefix="${prefix:-@prefix@}" -AR=@AR@ -RANLIB=@RANLIB@ +AR="@AR@" +RANLIB="@RANLIB@" H5TOOL="h5c++" # The tool name H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary |