diff options
author | Jim Meyering <meyering@redhat.com> | 2008-04-01 17:12:12 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-04-01 17:12:12 +0200 |
commit | a1a0b32bd79df2c7392fad53dfbc22ab5ef0578d (patch) | |
tree | 06e5966a223c602f5bb373196a5b6162828198f4 | |
parent | 9b16f4cc8cca9e5712f9e9a082b2d4a1120ba44e (diff) | |
download | coreutils-a1a0b32bd79df2c7392fad53dfbc22ab5ef0578d.tar.xz |
bootstrap: make find's -depth option be the first.
* bootstrap [dangling symlink removal]: Move find's -depth
option to precede all others, to avoid a warning.
-rwxr-xr-x | bootstrap | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -558,7 +558,7 @@ fi # unusual case in which a symlinked-to .m4 file is git-removed from gnulib # between successive runs of this script. find "$m4_base" "$source_base" \ - -name '*.m4' -depth -type l -xtype l -delete > /dev/null 2>&1 + -depth -name '*.m4' -type l -xtype l -delete > /dev/null 2>&1 # Reconfigure, getting other files. |