diff options
author | Stephan T. Lavavej <stl@nuwen.net> | 2017-11-26 16:12:17 -0800 |
---|---|---|
committer | Jim Meyering <meyering@fb.com> | 2017-11-26 18:54:41 -0800 |
commit | 6ada8b0a1b3f408ebf76e0cf7f7bb61019a70fdc (patch) | |
tree | 3ccb18b622fb647583e3a1f80f6e149fc75779e3 /bootstrap.conf | |
parent | d069525b20e65ef86fb680ba830db634487f111e (diff) | |
download | grep-6ada8b0a1b3f408ebf76e0cf7f7bb61019a70fdc.tar.gz |
grep: fix directory recursion on MS-Windows
gnulib recently gained a module, windows-stat-inodes, that fixes
directory recursion on MS-Windows. No changes to grep's C sources are
required; grep simply needs to request the module during configuration.
When grep requests this module, its configure script will gain the
behavior that was implemented in windows-stat-inodes.m4. This detects
mingw and sets WINDOWS_STAT_INODES=1. All other platforms are
unaffected, setting WINDOWS_STAT_INODES=0 (which is what's happening
in the absence of this patch).
* bootstrap.conf (gnulib_modules): Add windows-stat-inodes.
* NEWS (Bug fixes): Mention it.
Thanks to Pär Björklund who diagnosed the problem as involving inodes,
and thanks to Václav Haisman who provided the bootstrap.conf patch.
Diffstat (limited to 'bootstrap.conf')
-rw-r--r-- | bootstrap.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bootstrap.conf b/bootstrap.conf index 1c50974e..73f1573d 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -93,6 +93,7 @@ wchar wcrtomb wctob wctype-h +windows-stat-inodes xalloc xbinary-io xstrtoimax |