mirror of
https://git.rtems.org/rtems-source-builder
synced 2024-10-09 07:15:10 +08:00
Add distro aliases for Gentoo hosts
Gentoo stores most of the basic stuff in /bin and not /usr/bin. Default values do not work for Gentoo. Add 'gentoo' as a new variation. Signed-off-by: Ralf Ramsauer <ralf.ramsauer@oth-regensburg.de>
This commit is contained in:
parent
e8bc7defd0
commit
b43c7d7737
@ -119,6 +119,12 @@ def load():
|
||||
'__chown': ('exe', 'required', '/usr/bin/chown') },
|
||||
'suse' : { '__chgrp': ('exe', 'required', '/usr/bin/chgrp'),
|
||||
'__chown': ('exe', 'required', '/usr/sbin/chown') },
|
||||
'gentoo' : { '__bzip2': ('exe', 'required', '/bin/bzip2'),
|
||||
'__chgrp': ('exe', 'required', '/bin/chgrp'),
|
||||
'__chown': ('exe', 'required', '/bin/chown'),
|
||||
'__gzip': ('exe', 'required', '/bin/gzip'),
|
||||
'__grep': ('exe', 'required', '/bin/grep'),
|
||||
'__sed': ('exe', 'required', '/bin/sed') },
|
||||
}
|
||||
|
||||
if distro in variations:
|
||||
|
Loading…
x
Reference in New Issue
Block a user