diff options
author | John W. Parent <45471568+johnwparent@users.noreply.github.com> | 2023-02-02 19:34:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-02 16:34:35 -0800 |
commit | c49e2e56208e12e3d816116f7c8a8a130fd78beb (patch) | |
tree | 504b145c8a56677fe71a9217a799543fda8d3645 /lib | |
parent | 60624265f8a27710b96079070f01e7aea0a97a19 (diff) | |
download | spack-c49e2e56208e12e3d816116f7c8a8a130fd78beb.tar.gz spack-c49e2e56208e12e3d816116f7c8a8a130fd78beb.tar.bz2 spack-c49e2e56208e12e3d816116f7c8a8a130fd78beb.tar.xz spack-c49e2e56208e12e3d816116f7c8a8a130fd78beb.zip |
NMake builder: fix incorrect variable reference (#34937)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/build_systems/nmake.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/build_systems/nmake.py b/lib/spack/spack/build_systems/nmake.py index b5e93755c5..7b0f7f18ba 100644 --- a/lib/spack/spack/build_systems/nmake.py +++ b/lib/spack/spack/build_systems/nmake.py @@ -92,7 +92,7 @@ class NMakeBuilder(BaseBuilder): This path is relative to the root of the extracted tarball, not to the ``build_directory``. Defaults to the current directory. """ - return self.stage.source_dir + return self.stage.source_path @property def nmakefile_name(self): |