mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-10 12:01:10 +00:00
scons: add CheckUnresolved stub for FreeBSD
This commit is contained in:
parent
1e71b1fc39
commit
8535f26206
1 changed files with 3 additions and 0 deletions
3
utils.py
3
utils.py
|
@ -50,6 +50,9 @@ def CheckUnresolved( source, target, env ):
|
|||
# TODO: implement this for OSX
|
||||
if ( platform.system() == 'Darwin' ):
|
||||
return None
|
||||
# TODO: implement this for FreeBSD
|
||||
if ( platform.system() == 'FreeBSD' ):
|
||||
return None
|
||||
print 'CheckUnresolved %s' % target[0].abspath
|
||||
if ( not os.path.isfile( target[0].abspath ) ):
|
||||
print 'CheckUnresolved: %s does not exist' % target[0]
|
||||
|
|
Loading…
Reference in a new issue