summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2007-12-13 18:30:00 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2007-12-13 18:30:00 (GMT)
commit9ebdc0bf08a63227ab31e6f82793e8acd189806f (patch)
tree1eaeb9499bb28aad74f20f671f15dfbe92cc1f2c
parent98fb2db938937a27d51e8bc8493e174572481d24 (diff)
downloadhdf5-9ebdc0bf08a63227ab31e6f82793e8acd189806f.zip
hdf5-9ebdc0bf08a63227ab31e6f82793e8acd189806f.tar.gz
hdf5-9ebdc0bf08a63227ab31e6f82793e8acd189806f.tar.bz2
[svn-r14341] Maintenance for VMS system: VMS C++ compiler expects 'cxx' extensions. Used copy command
instead of rename to get the correct names of the C++ source files to avoid errors when build runs second time in the same directory. Platforms tested: VMS server
-rw-r--r--vms/make.com4
1 files changed, 2 insertions, 2 deletions
diff --git a/vms/make.com b/vms/make.com
index 62c834f..2e61e94 100644
--- a/vms/make.com
+++ b/vms/make.com
@@ -120,12 +120,12 @@ $ @make.com
$!
$ write sys$output "Building C++ library"
$ set def 'hdf5cxx_src'
-$ rename *.cpp *.cxx
+$ copy *.cpp *.cxx
$ @make.com
$!
$ write sys$output "Building C++ library tests"
$ set def 'hdf5cxx_test'
-$ rename *.cpp *.cxx
+$ copy *.cpp *.cxx
$ @make.com
$!
$ set def 'hdf5top'