diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-06-03 18:30:09 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-06-03 18:30:09 -0400 |
commit | 9e408d4bb50cb7c4e9d0a007b95f9fb9d32a16d0 (patch) | |
tree | 582082976f6d971928ccaed37e11d616e5378a98 /Makefile | |
parent | 6e4c3893ae4e053d571ee538f8b4dc4e6cfce658 (diff) | |
download | bfs-9e408d4bb50cb7c4e9d0a007b95f9fb9d32a16d0.tar.xz |
Make ELOOP an error again, except for -xtype.3.3.1
POSIX requires an error if (for example) -L encounters a symlink loop.
The GNU find change was restricted to -xtype, so add a manual ELOOP test
to eval_xtype() for compatibility.
This reverts commit 470589cbd9ca3e73d8c01ac3a96cbc065179dcc5.
Link: https://savannah.gnu.org/bugs/?19605
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -74,7 +74,7 @@ gen/version.c.new:: elif test -e src/../.git && command -v git >/dev/null 2>&1; then \ git -C src/.. describe --always --dirty; \ else \ - echo "3.3"; \ + echo "3.3.1"; \ fi | tr -d '\n' >>$@ @printf '";\n' >>$@ |