summaryrefslogtreecommitdiffstats
path: root/src/egl/SConscript
diff options
context:
space:
mode:
authorAlexander von Gluck IV <kallisti5@unixzen.com>2015-08-07 12:55:40 -0500
committerAlexander von Gluck IV <kallisti5@unixzen.com>2015-08-07 14:31:25 -0500
commitba651967a201b48f380cd30495e271317c1d8522 (patch)
treecbd86224a54915540055948c8ecdc1f37d57a432 /src/egl/SConscript
parent6de9a03bed400fca5672ef0c13c0039bbe94a679 (diff)
downloadexternal_mesa3d-ba651967a201b48f380cd30495e271317c1d8522.zip
external_mesa3d-ba651967a201b48f380cd30495e271317c1d8522.tar.gz
external_mesa3d-ba651967a201b48f380cd30495e271317c1d8522.tar.bz2
egl/dri2: Fix include path of u_atomic.h introduced e7e29189
This was causing a failure to build on SCons due to a missing -Isrc/egl. Instead of adding in that path, lets just -Isrc/ and include "utils/u_atomic.h". Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/egl/SConscript')
-rw-r--r--src/egl/SConscript1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/egl/SConscript b/src/egl/SConscript
index a7f6282..1b2a427 100644
--- a/src/egl/SConscript
+++ b/src/egl/SConscript
@@ -9,6 +9,7 @@ env = env.Clone()
env.Append(CPPPATH = [
'#/include',
'#/src/egl/main',
+ '#/src',
])