From 32f8610c8978673aa5d4f51097f955cdd14c13d8 Mon Sep 17 00:00:00 2001 From: Ron Yorston Date: Sun, 12 Apr 2015 13:07:19 +0100 Subject: Allow globbing to be enabled with mingw64 mingw64 handles globbing differently from mingw32. Add code to allow globbing to be enabled. (By default mingw64 has globbing disabled, though the default can be changed when it's compiled.) Also change the configuration option from ENABLE_NOGLOB to ENABLE_GLOBBING, because double negatives make me think too much. The default is still for globbing to be disabled. --- Config.in | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index c6aad4210..c2ee45dfd 100644 --- a/Config.in +++ b/Config.in @@ -630,16 +630,17 @@ config LFS cp, mount, tar, and many others. If you want to access files larger than 2 Gigabytes, enable this option. Otherwise, leave it set to 'N'. -config NOGLOB - bool "Turn off MSVCRT argument processing" - default y +config GLOBBING + bool "Allow busybox.exe to expand wildcards" + default n depends on PLATFORM_MINGW32 help - The Microsoft C Runtime handles the expansion of wildcards on the - command line while the BusyBox shell does its own wildcard expansion. - For best results when using the shell MSVCRT globbing should be - turned off. If you want the BusyBox binary to handle wildcard - expansion using the Microsoft C Runtime set this to 'N'. + In Microsoft Windows expansion of wildcards on the command line + ('globbing') is handled by the C runtime while the BusyBox shell + does its own wildcard expansion. For best results when using the + shell globbing by the C runtime should be turned off. If you want + the BusyBox binary to handle wildcard expansion using the C runtime + set this to 'Y'. config CROSS_COMPILER_PREFIX string "Cross Compiler prefix" -- cgit v1.2.3-55-g6feb