diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-10-01 14:47:52 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-10-01 14:47:52 +0200 |
commit | 08089c7c85a72d5eaf2bed22033098b263f58a3e (patch) | |
tree | dea7fea44ae328d4acaab8e7537db9e1f6912317 | |
parent | 514b51ddf3474647e7089e467d4c01107c357fac (diff) | |
download | busybox-w32-08089c7c85a72d5eaf2bed22033098b263f58a3e.tar.gz busybox-w32-08089c7c85a72d5eaf2bed22033098b263f58a3e.tar.bz2 busybox-w32-08089c7c85a72d5eaf2bed22033098b263f58a3e.zip |
ash: fix a thinko in the last commit
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index dcf92da82..c8dd9a5fe 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -47,7 +47,7 @@ | |||
47 | #if defined(__ANDROID_API__) && __ANDROID_API__ <= 24 | 47 | #if defined(__ANDROID_API__) && __ANDROID_API__ <= 24 |
48 | /* Bionic at least up to version 24 has no glob() */ | 48 | /* Bionic at least up to version 24 has no glob() */ |
49 | # undef ENABLE_ASH_INTERNAL_GLOB | 49 | # undef ENABLE_ASH_INTERNAL_GLOB |
50 | # define ENABLE_ASH_INTERNAL_GLOB 0 | 50 | # define ENABLE_ASH_INTERNAL_GLOB 1 |
51 | #endif | 51 | #endif |
52 | 52 | ||
53 | #if !ENABLE_ASH_INTERNAL_GLOB | 53 | #if !ENABLE_ASH_INTERNAL_GLOB |