aboutsummaryrefslogtreecommitdiff
path: root/Config.in
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2015-04-12 13:07:19 +0100
committerRon Yorston <rmy@pobox.com>2015-04-12 13:20:38 +0100
commit32f8610c8978673aa5d4f51097f955cdd14c13d8 (patch)
tree86406ab1ea0aa0dd1a1f30c3ac84320831df505a /Config.in
parentf030c24257d48c71fd11eb2bc4c00224d2970d34 (diff)
downloadbusybox-w32-32f8610c8978673aa5d4f51097f955cdd14c13d8.tar.gz
busybox-w32-32f8610c8978673aa5d4f51097f955cdd14c13d8.tar.bz2
busybox-w32-32f8610c8978673aa5d4f51097f955cdd14c13d8.zip
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.
Diffstat (limited to 'Config.in')
-rw-r--r--Config.in17
1 files changed, 9 insertions, 8 deletions
diff --git a/Config.in b/Config.in
index c6aad4210..c2ee45dfd 100644
--- a/Config.in
+++ b/Config.in
@@ -630,16 +630,17 @@ config LFS
630 cp, mount, tar, and many others. If you want to access files larger 630 cp, mount, tar, and many others. If you want to access files larger
631 than 2 Gigabytes, enable this option. Otherwise, leave it set to 'N'. 631 than 2 Gigabytes, enable this option. Otherwise, leave it set to 'N'.
632 632
633config NOGLOB 633config GLOBBING
634 bool "Turn off MSVCRT argument processing" 634 bool "Allow busybox.exe to expand wildcards"
635 default y 635 default n
636 depends on PLATFORM_MINGW32 636 depends on PLATFORM_MINGW32
637 help 637 help
638 The Microsoft C Runtime handles the expansion of wildcards on the 638 In Microsoft Windows expansion of wildcards on the command line
639 command line while the BusyBox shell does its own wildcard expansion. 639 ('globbing') is handled by the C runtime while the BusyBox shell
640 For best results when using the shell MSVCRT globbing should be 640 does its own wildcard expansion. For best results when using the
641 turned off. If you want the BusyBox binary to handle wildcard 641 shell globbing by the C runtime should be turned off. If you want
642 expansion using the Microsoft C Runtime set this to 'N'. 642 the BusyBox binary to handle wildcard expansion using the C runtime
643 set this to 'Y'.
643 644
644config CROSS_COMPILER_PREFIX 645config CROSS_COMPILER_PREFIX
645 string "Cross Compiler prefix" 646 string "Cross Compiler prefix"