diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-06-13 21:32:28 -0400 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-06-13 21:32:28 -0400 |
commit | 1a3cb10ca12c7fdfbea1fa3bd253ed46cf7a02ce (patch) | |
tree | 1ffa9cc90b4056772dff1fdcd69f298413433c5e /tools | |
parent | 886e3158cf5d95a2c2721e5eb9a1c3ac4461f805 (diff) |
do not eliminate dead code in EXPORT_ALL
Diffstat (limited to 'tools')
-rw-r--r-- | tools/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/shared.py b/tools/shared.py index 8a172d9c..0d1cfffd 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -1091,7 +1091,7 @@ set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)''' % { 'winfix': '' if not WINDOWS e @staticmethod def can_build_standalone(): - return not Settings.BUILD_AS_SHARED_LIB and not Settings.LINKABLE + return not Settings.BUILD_AS_SHARED_LIB and not Settings.LINKABLE and not Settings.EXPORT_ALL @staticmethod def can_use_unsafe_opts(): |