summaryrefslogtreecommitdiffstats
path: root/c++
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2003-06-11 20:46:26 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2003-06-11 20:46:26 (GMT)
commit2f67716abca7e072fb934db66400c7cb1627b7f2 (patch)
tree27d2bd3fe13d4e0d3a3db7e0677de06c866c80db /c++
parent8879e913632a1dc9c5545bdc3dbaed5313a7c94f (diff)
downloadhdf5-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-xc++/configure2
-rw-r--r--c++/configure.in2
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++