From 08089c7c85a72d5eaf2bed22033098b263f58a3e Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sat, 1 Oct 2016 14:47:52 +0200 Subject: ash: fix a thinko in the last commit Signed-off-by: Denys Vlasenko --- shell/ash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/ash.c b/shell/ash.c index dcf92da..c8dd9a5 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -47,7 +47,7 @@ #if defined(__ANDROID_API__) && __ANDROID_API__ <= 24 /* Bionic at least up to version 24 has no glob() */ # undef ENABLE_ASH_INTERNAL_GLOB -# define ENABLE_ASH_INTERNAL_GLOB 0 +# define ENABLE_ASH_INTERNAL_GLOB 1 #endif #if !ENABLE_ASH_INTERNAL_GLOB -- cgit v1.1