diff options
author | Jessica Clarke <jrtc27@jrtc27.com> | 2020-04-22 16:33:47 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-04-22 10:19:28 -0700 |
commit | 274a1328fb2b3a70eed9f9f95b17a7eb5e3125a3 (patch) | |
tree | 9c17698b5a1f3f021c1e639c43d6b2fcbdbf5fcd /config.mak.uname | |
parent | af6b65d45ef179ed52087e80cb089f6b2349f4ec (diff) | |
download | git-274a1328fb2b3a70eed9f9f95b17a7eb5e3125a3.tar.gz |
config.mak.uname: Define FREAD_READS_DIRECTORIES for GNU/Hurd
GNU/Hurd is another platform that behaves like this. Set it to
UnfortunatelyYes so that config directory files are correctly processed.
This fixes the corresponding 'proper error on directory "files"' test in
t1308-config-set.sh.
Helped-by: Jeff King <peff@peff.net>
Signed-off-by: Jessica Clarke <jrtc27@jrtc27.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'config.mak.uname')
-rw-r--r-- | config.mak.uname | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.mak.uname b/config.mak.uname index 0ab8e00938..3e526f6b9f 100644 --- a/config.mak.uname +++ b/config.mak.uname @@ -308,6 +308,7 @@ ifeq ($(uname_S),GNU) NO_STRLCPY = YesPlease HAVE_PATHS_H = YesPlease LIBC_CONTAINS_LIBINTL = YesPlease + FREAD_READS_DIRECTORIES = UnfortunatelyYes endif ifeq ($(uname_S),IRIX) NO_SETENV = YesPlease |