diff options
author | becker33 <becker33@llnl.gov> | 2016-08-01 16:09:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-01 16:09:28 -0700 |
commit | bc2e0cc87c3effd81f05c8edea02fca8bed1b1e7 (patch) | |
tree | 889cd5e70e3148a0725679a1e7f50764383c39ed /lib | |
parent | 7f43a7d134e3818170d8143df1de0a93c9489114 (diff) | |
parent | 0425f5d523aaff998785254bf67fea8afacfcfab (diff) | |
download | spack-bc2e0cc87c3effd81f05c8edea02fca8bed1b1e7.tar.gz spack-bc2e0cc87c3effd81f05c8edea02fca8bed1b1e7.tar.bz2 spack-bc2e0cc87c3effd81f05c8edea02fca8bed1b1e7.tar.xz spack-bc2e0cc87c3effd81f05c8edea02fca8bed1b1e7.zip |
Merge pull request #1418 from mamelara/bugfix/add_import
Add import statement
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/platforms/cray.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/platforms/cray.py b/lib/spack/spack/platforms/cray.py index 2bd2a40463..2a3b81cf9c 100644 --- a/lib/spack/spack/platforms/cray.py +++ b/lib/spack/spack/platforms/cray.py @@ -6,7 +6,7 @@ from spack.util.executable import which from spack.architecture import Platform, Target, NoPlatformError from spack.operating_systems.linux_distro import LinuxDistro from spack.operating_systems.cnl import Cnl - +from llnl.util.filesystem import join_path # Craype- module prefixes that are not valid CPU targets. NON_TARGETS = ('hugepages', 'network', 'target', 'accel', 'xtpe') |