diff options
author | Jim Meyering <meyering@redhat.com> | 2008-02-20 08:16:38 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-02-20 19:29:28 +0100 |
commit | a1ec12dad6e5c68948551b6b34ecae4c7ebbe7b6 (patch) | |
tree | acd4e6494bfbf9b86485e475cba8b2a303041b72 /bootstrap | |
parent | cb3147d29860195780f745faf42e2b8a02bdcbf5 (diff) | |
download | coreutils-a1ec12dad6e5c68948551b6b34ecae4c7ebbe7b6.tar.gz coreutils-a1ec12dad6e5c68948551b6b34ecae4c7ebbe7b6.tar.bz2 coreutils-a1ec12dad6e5c68948551b6b34ecae4c7ebbe7b6.zip |
* bootstrap: Remove dangling symlinks before invoking aclocal.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -2,7 +2,7 @@ # Bootstrap this package from checked-out sources. -# Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. +# Copyright (C) 2003-2008 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -538,6 +538,13 @@ if test -f $mam_template; then done fi +# Remove dangling symlinks in gnulib-populated directories, since +# a dangling m4/*.m4 symlink would cause aclocal to fail. +# This depends on GNU find, and a relatively recent version at that. +# Ignore any failure for now, since it's only to avoid the relatively +# unusual case in which a symlinked-to file in gnulib/ or gl/ is removed. +find m4 lib build-aux -depth -type l -xtype l -delete > /dev/null 2>&1 + # Reconfigure, getting other files. for command in \ |