mirror of
https://git.rtems.org/rtems-source-builder
synced 2024-10-09 07:15:10 +08:00
Windows native build fixes.
The testing of building on Windows is done using MSYS2.
This commit is contained in:
@@ -104,7 +104,7 @@ def path_check(opts, silent = False):
|
||||
if not silent:
|
||||
log.notice('error: environment PATH contains an empty path')
|
||||
return False
|
||||
elif p.strip() == '.' or p.strip() == '..':
|
||||
elif not options.host_windows and (p.strip() == '.' or p.strip() == '..'):
|
||||
if not silent:
|
||||
log.notice('error: environment PATH invalid path: %s' % (p))
|
||||
return False
|
||||
|
Reference in New Issue
Block a user