scons: add CheckUnresolved stub for FreeBSD

This commit is contained in:
Thomas Debesse 2017-08-30 14:17:59 +00:00
parent 1e71b1fc39
commit 8535f26206

View file

@ -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]