diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2007-12-13 18:30:00 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2007-12-13 18:30:00 (GMT) |
commit | 9ebdc0bf08a63227ab31e6f82793e8acd189806f (patch) | |
tree | 1eaeb9499bb28aad74f20f671f15dfbe92cc1f2c /vms/make.com | |
parent | 98fb2db938937a27d51e8bc8493e174572481d24 (diff) | |
download | hdf5-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
Diffstat (limited to 'vms/make.com')
-rw-r--r-- | vms/make.com | 4 |
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' |