aboutsummaryrefslogtreecommitdiffstats
path: root/src/util/os_misc.c
diff options
context:
space:
mode:
authorEric Engestrom <[email protected]>2019-08-01 21:45:25 +0100
committerEric Engestrom <[email protected]>2019-08-02 18:38:52 +0100
commite740e7a6f018738b02ce97db172d6749feeadce1 (patch)
tree0cbb265e0d843997e3f886eec9c1cfc3c109e0d0 /src/util/os_misc.c
parent8c63348c946822da3fda26afbd441adc063e091a (diff)
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 <[email protected]> Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/util/os_misc.c')
-rw-r--r--src/util/os_misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/os_misc.c b/src/util/os_misc.c
index e9a727c54d6..3a1e7eaddab 100644
--- a/src/util/os_misc.c
+++ b/src/util/os_misc.c
@@ -107,13 +107,13 @@ os_log_message(const char *message)
}
-#if !defined(PIPE_SUBSYSTEM_EMBEDDED)
+#if !defined(EMBEDDED_DEVICE)
const char *
os_get_option(const char *name)
{
return getenv(name);
}
-#endif /* !PIPE_SUBSYSTEM_EMBEDDED */
+#endif /* !EMBEDDED_DEVICE */
/**