Check if CPU family is x86_64. (#15862)
* Check if CPU family is x86_64. * Remove the leading space.
This commit is contained in:
parent
0891c5d854
commit
a7f418e0b2
@ -17,7 +17,7 @@ class Fl(Package):
|
|||||||
|
|
||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
if (self.spec.satisfies('platform=linux') and
|
if (self.spec.satisfies('platform=linux') and
|
||||||
self.spec.satisfies('target=x86_64')):
|
self.spec.target.family == 'x86_64'):
|
||||||
with working_dir('fl_{0}'.format(spec.version)):
|
with working_dir('fl_{0}'.format(spec.version)):
|
||||||
install_tree('.', prefix)
|
install_tree('.', prefix)
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user