Fix missing spack.compiler import (#8240)

Fixes: #8258

#8090 altered import behavior so that import spack no longer
provides access to many other Spack modules. This addresses
a case which depended on the prior behavior and was not
updated as part of #8090. This particular import error only
came up when users were setting compiler flags on specs.

See also: #8194
This commit is contained in:
Michael Kuhn 2018-05-24 19:59:20 +02:00 committed by scheibelp
parent fdb2d6f493
commit c77bc613eb

View File

@ -115,6 +115,7 @@
from llnl.util.tty.color import cwrite, colorize, cescape, get_color_when
import spack.architecture
import spack.compiler
import spack.compilers as compilers
import spack.error
import spack.parse