diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-10-17 16:18:22 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-10-17 16:18:22 -0400 |
commit | 84c672b0330b0d834b1634482748adbfb5520da6 (patch) | |
tree | bbc2f3ebbf333544dca0b8e3e6364f3d4d7749a3 /src/xspawn.c | |
parent | e736e1f72c53fbc3af7795a23d1dabc3d5c34ef8 (diff) | |
download | bfs-84c672b0330b0d834b1634482748adbfb5520da6.tar.xz |
util: Stub out confstr() on Android
Diffstat (limited to 'src/xspawn.c')
-rw-r--r-- | src/xspawn.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/xspawn.c b/src/xspawn.c index 93c270a..67e0572 100644 --- a/src/xspawn.c +++ b/src/xspawn.c @@ -260,11 +260,13 @@ char *bfs_spawn_resolve(const char *exe) { const char *path = getenv("PATH"); char *confpath = NULL; +#ifdef _CS_PATH if (!path) { path = confpath = xconfstr(_CS_PATH); - if (!path) { - return NULL; - } + } +#endif + if (!path) { + return NULL; } size_t cap = 0; |