mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-14 06:43:03 +00:00
* bootstrap (slurp): Create target directories that don't exist.
Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
This commit is contained in:
@@ -395,7 +395,12 @@ slurp() {
|
||||
copied=
|
||||
sep=
|
||||
for file in `ls $1/$dir`; do
|
||||
test -d $1/$dir/$file && continue
|
||||
if test -d $1/$dir/$file; then
|
||||
if test ! -d $dir/$file; then
|
||||
echo "$0: mkdir $dir/$file" && mkdir $dir/$file || exit
|
||||
fi
|
||||
continue
|
||||
fi
|
||||
for excluded_file in $excluded_files; do
|
||||
test "$dir/$file" = "$excluded_file" && continue 2
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user