From 4007ad9a2186e8683edb7151955f4b815d6746e2 Mon Sep 17 00:00:00 2001 From: Daniel Rosenberg Date: Thu, 3 Oct 2024 14:52:22 -0700 Subject: [PATCH] ignore mtab on android Updating the mtab on Android fails due to differences in toybox's mount command. Setting IGNORE_MTAB avoids that issue. Signed-off-by: Daniel Rosenberg --- lib/mount_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mount_util.c b/lib/mount_util.c index 02a84ef..089ca45 100644 --- a/lib/mount_util.c +++ b/lib/mount_util.c @@ -21,7 +21,7 @@ #include #include #include -#if !defined( __NetBSD__) && !defined(__FreeBSD__) && !defined(__DragonFly__) +#if !defined( __NetBSD__) && !defined(__FreeBSD__) && !defined(__DragonFly__) && !defined(__ANDROID__) #include #else #define IGNORE_MTAB -- 2.30.2