summaryrefslogtreecommitdiff
path: root/src/mapi/glapi
diff options
context:
space:
mode:
authorVinson Lee <vlee@freedesktop.org>2012-09-27 23:21:09 -0700
committerVinson Lee <vlee@freedesktop.org>2012-09-28 23:29:10 -0700
commit9549e55f1108540b513dfdb8277655a9f367c5f8 (patch)
treead50eed786cdb75f7868e022bd0174c2f06c35b1 /src/mapi/glapi
parent00905dbf19712c532bcdb2a2f7bf5d327d4df97b (diff)
scons: Disable build of assembly sources on Cygwin.
The assembly sources currently do not build on Cygwin. Signed-off-by: Vinson Lee <vlee@freedesktop.org> Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/mapi/glapi')
-rw-r--r--src/mapi/glapi/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/glapi/SConscript b/src/mapi/glapi/SConscript
index ad007a6f436..c336c2510ee 100644
--- a/src/mapi/glapi/SConscript
+++ b/src/mapi/glapi/SConscript
@@ -48,7 +48,7 @@ for s in mapi_sources:
#
# Assembly sources
#
-if env['gcc'] and env['platform'] not in ('darwin', 'windows'):
+if env['gcc'] and env['platform'] not in ('cygwin', 'darwin', 'windows'):
GLAPI = '#src/mapi/glapi/'
if env['machine'] == 'x86':