diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2014-02-07 08:01:15 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2014-02-07 08:01:15 -0800 |
commit | cd70747658bd5f552617b1e29dd1772f77ec2be1 (patch) | |
tree | d0266fa900bef466929ae4749eab110275c7efca /lib | |
parent | 73774c1249fb22f28b28346bd9ca5819104ce4c6 (diff) | |
parent | f6a484519e836af91ec77ccc16c5b1e05cf95364 (diff) | |
download | spack-cd70747658bd5f552617b1e29dd1772f77ec2be1.tar.gz spack-cd70747658bd5f552617b1e29dd1772f77ec2be1.tar.bz2 spack-cd70747658bd5f552617b1e29dd1772f77ec2be1.tar.xz spack-cd70747658bd5f552617b1e29dd1772f77ec2be1.zip |
Merge pull request #4 from jprotze/master
fix bug introduced by name change of arch package to 'architecture'
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/cmd/arch.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/spack/cmd/arch.py b/lib/spack/spack/cmd/arch.py index aeb2ba3ff8..f0e88d1849 100644 --- a/lib/spack/spack/cmd/arch.py +++ b/lib/spack/spack/cmd/arch.py @@ -28,8 +28,8 @@ import spack.architecture as architecture description = "Print the architecture for this machine" def arch(parser, args): - configured_sys_type = arch.get_sys_type_from_spack_globals() + configured_sys_type = architecture.get_sys_type_from_spack_globals() if not configured_sys_type: configured_sys_type = "autodetect" print "Configured sys_type: %s" % configured_sys_type - print "Autodetected default sys_type: %s" % arch.sys_type() + print "Autodetected default sys_type: %s" % architecture.sys_type() |