diff options
author | Jim Meyering <meyering@redhat.com> | 2008-04-01 17:05:31 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-04-01 17:05:31 +0200 |
commit | 9b16f4cc8cca9e5712f9e9a082b2d4a1120ba44e (patch) | |
tree | 30b1ecd06e833b05947dfb86fba9cda2972ff4c6 /bootstrap | |
parent | 6e177448b9e204d384b8e12a38b386f3c53aa33e (diff) | |
download | coreutils-9b16f4cc8cca9e5712f9e9a082b2d4a1120ba44e.tar.gz coreutils-9b16f4cc8cca9e5712f9e9a082b2d4a1120ba44e.tar.bz2 coreutils-9b16f4cc8cca9e5712f9e9a082b2d4a1120ba44e.zip |
* bootstrap: Remove dangling symlinks from lib (aka $source_base), too.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -557,7 +557,9 @@ fi # since this is only a convenience to help developers avoid the relatively # unusual case in which a symlinked-to .m4 file is git-removed from gnulib # between successive runs of this script. -find "$m4_base" -name '*.m4' -depth -type l -xtype l -delete > /dev/null 2>&1 +find "$m4_base" "$source_base" \ + -name '*.m4' -depth -type l -xtype l -delete > /dev/null 2>&1 + # Reconfigure, getting other files. |