* libtoolize.m4sh (func_included_files): Do not recurse

non-existent files.
This commit is contained in:
Ralf Wildenhues 2005-09-29 16:36:17 +00:00
parent 48266b26be
commit db7359dd32
2 changed files with 11 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2005-09-29 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* libtoolize.m4sh (func_included_files): Do not recurse
non-existent files.
2005-09-27 Gary V. Vaughan <gary@gnu.org>
* libtoolize.m4sh (func_scan_files): Support projects that have

View File

@ -453,13 +453,13 @@ func_included_files ()
if test -f "$my_searchfile"; then
$ECHO "X$my_searchfile" | $Xsed
fi
# Only recurse when we don't care if all the variables we use get
# trashed, since they are in global scope.
for my_filename in `$SED "$my_sed_include" "$my_searchfile"`; do
func_included_files $my_filename
done
# Only recurse when we don't care if all the variables we use get
# trashed, since they are in global scope.
for my_filename in `$SED "$my_sed_include" "$my_searchfile"`; do
func_included_files $my_filename
done
fi
}