trf: make executable (#8265)

This commit is contained in:
Levi Baber 2018-05-24 10:47:17 -05:00 committed by Adam J. Stewart
parent db4062b01f
commit fdf889264e

View File

@ -44,3 +44,5 @@ class Trf(Package):
def install(self, spec, prefix):
mkdirp(prefix.bin)
install('trf409.linux64', prefix.bin.trf)
chmod = which('chmod')
chmod('+x', prefix.bin.trf)