Merge pull request #189 from mathstuf/openssl-use-64-bits

WIP: openssl: set KERNEL_BITS to make ./config work
This commit is contained in:
Todd Gamblin 2015-11-23 16:09:28 -08:00
commit 98ccad8105

View File

@ -16,6 +16,8 @@ class Openssl(Package):
parallel = False
def install(self, spec, prefix):
env['KERNEL_BITS'] = '64' # Only on 64-bit Mac
config = Executable("./config")
config("--prefix=%s" % prefix,
"--openssldir=%s/etc/openssl" % prefix,