diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-06-11 20:46:26 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-06-11 20:46:26 (GMT) |
commit | 2f67716abca7e072fb934db66400c7cb1627b7f2 (patch) | |
tree | 27d2bd3fe13d4e0d3a3db7e0677de06c866c80db /c++ | |
parent | 8879e913632a1dc9c5545bdc3dbaed5313a7c94f (diff) | |
download | hdf5-2f67716abca7e072fb934db66400c7cb1627b7f2.zip hdf5-2f67716abca7e072fb934db66400c7cb1627b7f2.tar.gz hdf5-2f67716abca7e072fb934db66400c7cb1627b7f2.tar.bz2 |
[svn-r7025] Purpose:
Bug Fix
Description:
On Kelgia, the h5c++ script file needs to be explicitly chmod'ed to
executable.
Solution:
Placed this at the end of the configure script (just like in the
other configure scripts).
Platforms tested:
Kelgia (Very small fix...only needed to test it on one platform).
Misc. update:
Diffstat (limited to 'c++')
-rwxr-xr-x | c++/configure | 2 | ||||
-rw-r--r-- | c++/configure.in | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/c++/configure b/c++/configure index 4844ff0..dd30cc1 100755 --- a/c++/configure +++ b/c++/configure @@ -11100,3 +11100,5 @@ fi no_create=$saved_no_create test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1 + +chmod 755 src/h5c++ diff --git a/c++/configure.in b/c++/configure.in index ca8f964..aa0ce62 100644 --- a/c++/configure.in +++ b/c++/configure.in @@ -808,3 +808,5 @@ no_create=$saved_no_create dnl Finally the makefiles test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1 + +chmod 755 src/h5c++ |