diff options
author | Dylan Baker <[email protected]> | 2019-05-31 09:39:32 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2019-09-16 17:54:00 +0000 |
commit | 9e1f49aae1c5640af89228e356fd525a08006369 (patch) | |
tree | 8ee4f736db4752f53faa6fe92907573f37c68685 /src/mapi/glapi/gen/SConscript | |
parent | ca5782f0ee05496a4c0fefb69932d94b65b66597 (diff) |
scons: Make scons and meson agree about path to glapi generated headers
Currently scons puts them in src/mapi/glapi, meosn puts them in
src/mapi/glapi/gen. This results in some things being compilable only by
one or the other, put them in the same places so that everyone is happy.
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/mapi/glapi/gen/SConscript')
-rw-r--r-- | src/mapi/glapi/gen/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/glapi/gen/SConscript b/src/mapi/glapi/gen/SConscript index ff0df745c2c..942b5594231 100644 --- a/src/mapi/glapi/gen/SConscript +++ b/src/mapi/glapi/gen/SConscript @@ -28,7 +28,7 @@ env.CodeGenerate( ) env.CodeGenerate( - target = '../../../mapi/glapi/glapitemp.h', + target = '../../../mapi/glapi/gen/glapitemp.h', script = 'gl_apitemp.py', source = sources, command = python_cmd + ' $SCRIPT -f $SOURCE > $TARGET' |