mirror of
git://git.sv.gnu.org/autoconf
synced 2025-02-23 14:09:51 +08:00
* lib/autoconf/functions.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK):
Fix typo introduced with 2006-04-02 change. It reversed the sense of the test.
This commit is contained in:
parent
20e21056a2
commit
3f707bfd9f
@ -1,3 +1,9 @@
|
||||
2006-05-23 Jim Meyering <jim@meyering.net>
|
||||
|
||||
* lib/autoconf/functions.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK):
|
||||
Fix typo introduced with 2006-04-02 change. It reversed the sense
|
||||
of the test.
|
||||
|
||||
2006-05-23 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
* lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Simplify ac_dA and
|
||||
|
@ -841,7 +841,7 @@ if test "$as_ln_s" = "ln -s" && ln -s conftest.file conftest.sym; then
|
||||
/* Linux will dereference the symlink and fail.
|
||||
That is better in the sense that it means we will not
|
||||
have to compile and use the lstat wrapper. */
|
||||
return lstat ("conftest.sym/", &sbuf) != 0;])],
|
||||
return lstat ("conftest.sym/", &sbuf) == 0;])],
|
||||
[ac_cv_func_lstat_dereferences_slashed_symlink=yes],
|
||||
[ac_cv_func_lstat_dereferences_slashed_symlink=no],
|
||||
[ac_cv_func_lstat_dereferences_slashed_symlink=no])
|
||||
|
Loading…
Reference in New Issue
Block a user