From dda5fd7390ac922b6a568b242444eb395aff6f9c Mon Sep 17 00:00:00 2001 From: Tom Ritchford Date: Wed, 28 May 2014 15:01:04 -0400 Subject: [PATCH] Check for openSSL version in SConstruct. * Uses the platform specific openssl binary to detect the current version. --- site_scons/Beast.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/site_scons/Beast.py b/site_scons/Beast.py index 3a4ba9d004..0b096d402e 100644 --- a/site_scons/Beast.py +++ b/site_scons/Beast.py @@ -69,6 +69,8 @@ class __System(object): else: raise Exception('Unknown system platform "' + self.name + '"') + self.platform = self.distro or self.name + def __str__(self): return self.__display