summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordownloadico <download@carc.unm.edu>2022-12-05 15:19:54 -0700
committerGitHub <noreply@github.com>2022-12-05 15:19:54 -0700
commit37f232e3199c179aa3115493b48326f9c0d5129c (patch)
tree5dee9bc2d8bad56b627b1fefc05b8b5509eb4a2e
parentac1c29eac036b19dab82a8ec8c8ff54acc2fac78 (diff)
downloadspack-37f232e3199c179aa3115493b48326f9c0d5129c.tar.gz
spack-37f232e3199c179aa3115493b48326f9c0d5129c.tar.bz2
spack-37f232e3199c179aa3115493b48326f9c0d5129c.tar.xz
spack-37f232e3199c179aa3115493b48326f9c0d5129c.zip
psrcat: fixed typo/undefined variable problem (#34334)
replaced the reference to the undefined "bindir" variable with prefix.bin
-rw-r--r--var/spack/repos/builtin/packages/psrcat/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/psrcat/package.py b/var/spack/repos/builtin/packages/psrcat/package.py
index 850fd16bd3..a82c3ddf1c 100644
--- a/var/spack/repos/builtin/packages/psrcat/package.py
+++ b/var/spack/repos/builtin/packages/psrcat/package.py
@@ -22,4 +22,4 @@ class Psrcat(MakefilePackage):
def install(self, spec, prefix):
mkdirp(prefix.bin)
- install("psrcat", bindir)
+ install("psrcat", prefix.bin)