mirror of
https://git.rtems.org/rtems-source-builder
synced 2024-10-09 07:15:10 +08:00
Define as a macro as the remaining fields of the split.
This commit is contained in:
@@ -216,7 +216,9 @@ class buildset:
|
||||
if l.startswith('%define'):
|
||||
ls = l.split()
|
||||
if len(ls) > 2:
|
||||
self.defaults[ls[1].strip()] = ('none', 'none', ls[2].strip())
|
||||
self.defaults[ls[1].strip()] = ('none',
|
||||
'none',
|
||||
' '.join([f.strip() for f in ls[2:]]))
|
||||
else:
|
||||
self.defaults[ls[1].strip()] = ('none', 'none', '1')
|
||||
elif l.startswith('%include'):
|
||||
|
Reference in New Issue
Block a user