summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/clapack
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2018-08-15 11:30:09 -0500
committerTodd Gamblin <tgamblin@llnl.gov>2018-08-15 09:30:09 -0700
commit73c978ddd99973e29f2ba42078b10455c1de5ca8 (patch)
tree681d7ae0d3699ce8c73c126a2310f3c7430efd69 /var/spack/repos/builtin/packages/clapack
parentc0699539d56bc16271861dc0de61534f369f1bb9 (diff)
downloadspack-73c978ddd99973e29f2ba42078b10455c1de5ca8.tar.gz
spack-73c978ddd99973e29f2ba42078b10455c1de5ca8.tar.bz2
spack-73c978ddd99973e29f2ba42078b10455c1de5ca8.tar.xz
spack-73c978ddd99973e29f2ba42078b10455c1de5ca8.zip
install_tree, copy_tree can install into existing directory structures (#8289)
Replace use of `shutil.copytree` with `copy_tree` and `install_tree` functions in `llnl.util.filesystem`. - `copy_tree` copies without setting permissions. It should be used to copy files around in the build directory. - `install_tree` copies files and sets permissions. It should be used to copy files into the installation directory. - `install` and `copy` are analogous single-file functions. - add more extensive tests for these functions - update packages to use these functions.
Diffstat (limited to 'var/spack/repos/builtin/packages/clapack')
-rw-r--r--var/spack/repos/builtin/packages/clapack/package.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/clapack/package.py b/var/spack/repos/builtin/packages/clapack/package.py
index 73c4414d31..dd0076db43 100644
--- a/var/spack/repos/builtin/packages/clapack/package.py
+++ b/var/spack/repos/builtin/packages/clapack/package.py
@@ -23,7 +23,6 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##############################################################################
from spack import *
-from distutils.dir_util import copy_tree
class Clapack(MakefilePackage):
@@ -46,7 +45,7 @@ class Clapack(MakefilePackage):
depends_on('atlas', when='+external-blas')
def edit(self, spec, prefix):
- install('make.inc.example', 'make.inc')
+ copy('make.inc.example', 'make.inc')
if '+external-blas' in spec:
make_inc = FileFilter('make.inc')
make_inc.filter(r'^BLASLIB.*',
@@ -60,4 +59,4 @@ class Clapack(MakefilePackage):
make('lib')
def install(self, spec, prefix):
- copy_tree('.', prefix)
+ install_tree('.', prefix)