summaryrefslogtreecommitdiffstats
path: root/source-builder/sb/options.py
diff options
context:
space:
mode:
Diffstat (limited to 'source-builder/sb/options.py')
-rw-r--r--source-builder/sb/options.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/source-builder/sb/options.py b/source-builder/sb/options.py
index ae67eeb..d8e7a88 100644
--- a/source-builder/sb/options.py
+++ b/source-builder/sb/options.py
@@ -420,10 +420,14 @@ class command_line:
_host = self.defaults.expand('%{_host}')
_build = self.defaults.expand('%{_build}')
_target = self.defaults.expand('%{_target}')
- if len(_target):
- return len(_host) and len(_build) and (_target) and \
- _host != _build and _host != _target
- return len(_host) and len(_build) and _host != _build
+ #
+ # This has been removed to fix how RTEMS 3rd party libraries
+ # are built. This may break Cxc tools builds.
+ #
+ # if len(_target):
+ # return len(_host) and len(_build) and (_target) and \
+ # _host != _build and _host != _target
+ return len(_target) and len(_host) and len(_build) and _host != _build
def user_macros(self):
#