diff options
author | Jose Fonseca <jfonseca@vmware.com> | 2015-03-24 20:26:21 +0000 |
---|---|---|
committer | Jose Fonseca <jfonseca@vmware.com> | 2015-03-25 10:42:35 +0000 |
commit | 47870d658b777722d48d6b9084d66e270a04e52e (patch) | |
tree | 47cc9ab736b848e36d0d2b7ac22cfc8c05461f81 /src/SConscript | |
parent | f9b8c9299d10542c9806927018a488f84adcb036 (diff) |
scons: Don't build loader on Windows.
EGL was the last user.
Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/SConscript')
-rw-r--r-- | src/SConscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/SConscript b/src/SConscript index 40b7fc151d..b0578e8925 100644 --- a/src/SConscript +++ b/src/SConscript @@ -12,7 +12,8 @@ if env['hostonly']: # compilation Return() -SConscript('loader/SConscript') +if env['platform'] != 'windows': + SConscript('loader/SConscript') # When env['gles'] is set, the targets defined in mapi/glapi/SConscript are not # used. libgl-xlib and libgl-gdi adapt themselves to use the targets defined |