aboutsummaryrefslogtreecommitdiff
path: root/libc/bionic/__bionic_get_shell_path.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/bionic/__bionic_get_shell_path.cpp')
-rw-r--r--libc/bionic/__bionic_get_shell_path.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/libc/bionic/__bionic_get_shell_path.cpp b/libc/bionic/__bionic_get_shell_path.cpp
index 7aeed182e..c087b3532 100644
--- a/libc/bionic/__bionic_get_shell_path.cpp
+++ b/libc/bionic/__bionic_get_shell_path.cpp
@@ -36,6 +36,10 @@
#define VENDOR_PREFIX "/vendor/"
static const char* init_sh_path() {
+#if !defined(__ANDROID__)
+ // For the host Bionic, use the standard /bin/sh
+ return "/bin/sh";
+#else
/* If the device is not treble enabled, return the path to the system shell.
* Vendor code, on non-treble enabled devices could use system() / popen()
* with relative paths for executables on /system. Since /system will not be
@@ -51,6 +55,7 @@ static const char* init_sh_path() {
}
#endif
return "/system/bin/sh";
+#endif // if !defined(__ANDROID__)
}
const char* __bionic_get_shell_path() {