From c7274eb1f51f2f95695a1efc5b3cd9ac9afafdf6 Mon Sep 17 00:00:00 2001 From: Geoffrey Oxberry Date: Tue, 13 Feb 2018 23:41:50 -0800 Subject: gdbm: fix lmod global name 'spack_cc' undefined (#7225) Prior to this commit, running `spack module refresh` with `gdbm` installed throws the warning: ```console ==> Warning: Could not write module file [/Users/oxberry1/spack/share/spack/lmod/darwin-sierra-x86_64/Core/gdbm/1.14.1.lua] ==> Warning: --> global name 'spack_cc' is not defined <-- ``` This warning is repeated for every `gdbm` installation in Spack. The cause of the issue seems to be the same as in spack/spack (#6089): using `spack_cc`, `spack_cxx`, or similar inside `configure_args` causes the warnings to throw when module files are generated. Moving the use of `spack_cc` into `setup_environment` seems to fix the problem, even though it's a bit of a kludge. --- var/spack/repos/builtin/packages/gdbm/package.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/var/spack/repos/builtin/packages/gdbm/package.py b/var/spack/repos/builtin/packages/gdbm/package.py index a1529855c3..9a5f1bd12e 100644 --- a/var/spack/repos/builtin/packages/gdbm/package.py +++ b/var/spack/repos/builtin/packages/gdbm/package.py @@ -45,10 +45,12 @@ class Gdbm(AutotoolsPackage): depends_on("readline") + def setup_environment(self, spack_env, run_env): + spack_env.set('CC', spack_cc) + def configure_args(self): config_args = [ '--enable-libgdbm-compat', - 'CC=%s' % spack_cc ] return config_args -- cgit v1.2.3-70-g09d2