psrcat: fixed typo/undefined variable problem (#34334)
replaced the reference to the undefined "bindir" variable with prefix.bin
This commit is contained in:
parent
ac1c29eac0
commit
37f232e319
1 changed files with 1 additions and 1 deletions
|
@ -22,4 +22,4 @@ def build(self, spec, prefix):
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
mkdirp(prefix.bin)
|
mkdirp(prefix.bin)
|
||||||
install("psrcat", bindir)
|
install("psrcat", prefix.bin)
|
||||||
|
|
Loading…
Reference in a new issue