bedops: avoid static linking with glibc (#10456)

This commit is contained in:
Justin Stanley
2019-03-01 10:17:01 -06:00
committed by Levi Baber
parent 165d8da0c2
commit 94357a274c

View File

@@ -19,6 +19,11 @@ class Bedops(MakefilePackage):
version('2.4.34', 'fc467d96134a0efe8b134e638af87a1a')
version('2.4.30', '4e5d9f7b7e5432b28aef8d17a22cffab')
@property
def build_targets(self):
# avoid static linking with glibc for all invocations
return ['SFLAGS=']
def install(self, spec, prefix):
mkdirp(prefix.bin)
make('install', "BINDIR=%s" % prefix.bin)