mirror of
https://git.rtems.org/rtems-source-builder
synced 2024-10-09 07:15:10 +08:00
Remove the deep copy and use a shallow copy so it worked on Python 2.6.
This commit is contained in:
@@ -283,8 +283,8 @@ class buildset:
|
||||
# defaults so we do not contaminate one configuration with
|
||||
# another.
|
||||
#
|
||||
_opts = copy.deepcopy(self.opts)
|
||||
_defaults = copy.deepcopy(self.defaults)
|
||||
_opts = copy.copy(self.opts)
|
||||
_defaults = copy.copy(self.defaults)
|
||||
if configs[s].endswith('.bset'):
|
||||
bs = buildset(configs[s],
|
||||
_configs = self.configs,
|
||||
|
Reference in New Issue
Block a user