Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'es/fread-reads-dir-autoconf-fix'
author
Junio C Hamano
<gitster@pobox.com>
Wed, 25 Apr 2018 04:29:01 +0000
(13:29 +0900)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 25 Apr 2018 04:29:01 +0000
(13:29 +0900)
Small fix to the autoconf build procedure.
* es/fread-reads-dir-autoconf-fix:
configure.ac: fix botched FREAD_READS_DIRECTORIES check
configure.ac
patch
|
blob
|
history
raw
(from parent 1:
deb9845
)
diff --git
a/configure.ac
b/configure.ac
index 6f1fd9df35ef7d477ddb75de454a4708176ad634..e11b7976ab1c93d8ccec2e499d0093db42551059 100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-927,7
+927,7
@@
AC_RUN_IFELSE(
[AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT],
[[
FILE *f = fopen(".", "r");
- return f
)
]])],
+ return f
!= NULL;
]])],
[ac_cv_fread_reads_directories=no],
[ac_cv_fread_reads_directories=yes])
])