diff options
author | Eric Engestrom <eric.engestrom@intel.com> | 2019-08-01 21:45:25 +0100 |
---|---|---|
committer | Eric Engestrom <eric.engestrom@intel.com> | 2019-08-02 18:38:52 +0100 |
commit | e740e7a6f018738b02ce97db172d6749feeadce1 (patch) | |
tree | 0cbb265e0d843997e3f886eec9c1cfc3c109e0d0 /scons | |
parent | 8c63348c946822da3fda26afbd441adc063e091a (diff) | |
download | mesa-e740e7a6f018738b02ce97db172d6749feeadce1.tar.gz mesa-e740e7a6f018738b02ce97db172d6749feeadce1.tar.bz2 mesa-e740e7a6f018738b02ce97db172d6749feeadce1.zip |
scons: rename PIPE_SUBSYSTEM_EMBEDDED to EMBEDDED_DEVICE
It has nothing to do with the PIPE_SUBSYSTEM_* stuff from gallium.
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'scons')
-rwxr-xr-x | scons/gallium.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scons/gallium.py b/scons/gallium.py index 5834f6e2194..6f5fca00acf 100755 --- a/scons/gallium.py +++ b/scons/gallium.py @@ -406,7 +406,7 @@ def generate(env): if platform == 'windows': cppdefines += ['PIPE_SUBSYSTEM_WINDOWS_USER'] if env['embedded']: - cppdefines += ['PIPE_SUBSYSTEM_EMBEDDED'] + cppdefines += ['EMBEDDED_DEVICE'] env.Append(CPPDEFINES = cppdefines) # C compiler options |