summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2007-12-11 22:07:08 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2007-12-11 22:07:08 (GMT)
commit1693ccbeba8e0787bb34e1a37c2e5b3e4c470395 (patch)
treef3ebc9d04a2c038dc7e50a6edcd1a6b1f7b99d30
parent6c2c56c0a6339c462cb45341c7a0119b3032147d (diff)
downloadhdf5-1693ccbeba8e0787bb34e1a37c2e5b3e4c470395.zip
hdf5-1693ccbeba8e0787bb34e1a37c2e5b3e4c470395.tar.gz
hdf5-1693ccbeba8e0787bb34e1a37c2e5b3e4c470395.tar.bz2
[svn-r14338] Maintenance: Cleaned up system warnings for the install.com script
Platforms tested: VMS server
-rw-r--r--vms/install.com15
1 files changed, 6 insertions, 9 deletions
diff --git a/vms/install.com b/vms/install.com
index 1546d1a..21ebbbd 100644
--- a/vms/install.com
+++ b/vms/install.com
@@ -23,7 +23,6 @@ $!
$ hdf5top = F$DIRECTORY()
$ len = F$LENGTH(hdf5top)
$ hdf5top_dir = F$EXTRACT(0, len-4, hdf5top)
-$ hdf5top_dir1 = F$EXTRACT(0, len-5, hdf5top)
$!
$ hdf5src = hdf5top_dir + "SRC]"
$ hdf5examples = hdf5top_dir + "EXAMPLES]"
@@ -48,12 +47,11 @@ $ hdf5install_examples_cxx = hdf5top_dir + "HDF5.EXAMPLES.CXX]"
$ hdf5install_lib = hdf5top_dir + "HDF5.LIB]"
$ hdf5install_bin = hdf5top_dir + "HDF5.BIN]"
$
-$ install_dir = hdf5top_dir1 + "]HDF5.DIR"
-$ if F$SEARCH(install_dir) .NES. ""
-$ then write sys$output "''install_dir' directory exists, will not create"
+$ if F$SEARCH(hdf5install) .NES. ""
+$ then write sys$output "''hdf5install' directory exists, will not create"
$ else
-$ write sys$output "Creating ''instal_dir'..."
-$ create/dir 'install_dir'
+$ write sys$output "Creating ''hdf5install'..."
+$ create/dir 'hdf5install'
$ endif
$
$ if F$SEARCH(hdf5install_include) .NES. ""
@@ -115,7 +113,6 @@ $ write sys$output "Installing C++ library and header files"
$ set def 'hdf5cxx_src'
$ copy HDF5_CPLUS.olb 'hdf5install_lib'
$ copy *.h 'hdf5install_include'
-$ del 'hdf5install_include'*private*.h;*
$!
$ write sys$output "Installing utilties"
$ set def 'hdf5tools_h5copy'
@@ -148,8 +145,8 @@ $ set def 'hdf5fortran_examples'
$ copy *.f90 'hdf5install_examples_f90'
$!
$ set def 'hdf5cxx_examples'
-$ rename *.cpp *.cxx
-$ copy *.cxx 'hdf5install_examples_cxx'
+$ copy *.cpp 'hdf5install_examples_cxx'
+$ rename 'hdf5install_examples_cxx'*.cpp 'hdf5install_examples_cxx'*.cxx
$
$
$!