aboutsummaryrefslogtreecommitdiff
path: root/README.md
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 /README.md
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 'README.md')
-rw-r--r--README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.md b/README.md
index 1ef735a74..ad5b475d3 100644
--- a/README.md
+++ b/README.md
@@ -17,3 +17,4 @@ Then just `make`.
17 - Use forward slashes in paths: Windows doesn't mind and the shell will be happier. 17 - Use forward slashes in paths: Windows doesn't mind and the shell will be happier.
18 - Don't do wild things with Windows drive or UNC notation. 18 - Don't do wild things with Windows drive or UNC notation.
19 - tar doesn't support seamless compression/decompression: use a pipeline to a compressor/decompressor. 19 - tar doesn't support seamless compression/decompression: use a pipeline to a compressor/decompressor.
20 - Wildcard expansion is disabled by default, though it can be turned on at compile time. This only affects command line arguments to the binary: the BusyBox shell has full support for wildcards.