mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-21 18:23: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:
@@ -1,3 +1,8 @@
|
|||||||
|
2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
|
||||||
|
|
||||||
|
* bootstrap (slurp): Create target directories that don't exist.
|
||||||
|
Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
|
||||||
|
|
||||||
2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
|
2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
|
||||||
|
|
||||||
* LR0.c (new_itemsets): Fix wording in comments: say item index rather
|
* LR0.c (new_itemsets): Fix wording in comments: say item index rather
|
||||||
|
|||||||
@@ -395,7 +395,12 @@ slurp() {
|
|||||||
copied=
|
copied=
|
||||||
sep=
|
sep=
|
||||||
for file in `ls $1/$dir`; do
|
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
|
for excluded_file in $excluded_files; do
|
||||||
test "$dir/$file" = "$excluded_file" && continue 2
|
test "$dir/$file" = "$excluded_file" && continue 2
|
||||||
done
|
done
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ c-ctype.h
|
|||||||
c-strcase.h
|
c-strcase.h
|
||||||
c-strcasecmp.c
|
c-strcasecmp.c
|
||||||
c-strncasecmp.c
|
c-strncasecmp.c
|
||||||
|
config.charset
|
||||||
config.h
|
config.h
|
||||||
config.hin
|
config.hin
|
||||||
configmake.h
|
configmake.h
|
||||||
@@ -32,6 +33,8 @@ hash.c
|
|||||||
hash.h
|
hash.h
|
||||||
inttypes.h
|
inttypes.h
|
||||||
inttypes_.h
|
inttypes_.h
|
||||||
|
localcharset.c
|
||||||
|
localcharset.h
|
||||||
malloc.c
|
malloc.c
|
||||||
mbswidth.c
|
mbswidth.c
|
||||||
mbswidth.h
|
mbswidth.h
|
||||||
@@ -42,6 +45,8 @@ quote.c
|
|||||||
quote.h
|
quote.h
|
||||||
quotearg.c
|
quotearg.c
|
||||||
quotearg.h
|
quotearg.h
|
||||||
|
ref-add.sin
|
||||||
|
ref-del.sin
|
||||||
stamp-h1
|
stamp-h1
|
||||||
stdbool.h
|
stdbool.h
|
||||||
stdbool_.h
|
stdbool_.h
|
||||||
@@ -52,6 +57,7 @@ stdio-safer.h
|
|||||||
stdlib.h
|
stdlib.h
|
||||||
stdlib_.h
|
stdlib_.h
|
||||||
stpcpy.c
|
stpcpy.c
|
||||||
|
streq.h
|
||||||
strerror.c
|
strerror.c
|
||||||
string.h
|
string.h
|
||||||
string_.h
|
string_.h
|
||||||
@@ -66,12 +72,15 @@ unistd--.h
|
|||||||
unistd-safer.h
|
unistd-safer.h
|
||||||
unistd.h
|
unistd.h
|
||||||
unistd_.h
|
unistd_.h
|
||||||
|
unitypes.h
|
||||||
|
uniwidth.h
|
||||||
unlocked-io.h
|
unlocked-io.h
|
||||||
verify.h
|
verify.h
|
||||||
wchar.h
|
wchar.h
|
||||||
wchar_.h
|
wchar_.h
|
||||||
wctype.h
|
wctype.h
|
||||||
wctype_.h
|
wctype_.h
|
||||||
|
wcwidth.c
|
||||||
wcwidth.h
|
wcwidth.h
|
||||||
xalloc-die.c
|
xalloc-die.c
|
||||||
xalloc.h
|
xalloc.h
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ javaexec.m4
|
|||||||
lib-ld.m4
|
lib-ld.m4
|
||||||
lib-link.m4
|
lib-link.m4
|
||||||
lib-prefix.m4
|
lib-prefix.m4
|
||||||
|
localcharset.m4
|
||||||
longlong.m4
|
longlong.m4
|
||||||
mbrtowc.m4
|
mbrtowc.m4
|
||||||
mbstate_t.m4
|
mbstate_t.m4
|
||||||
|
|||||||
Reference in New Issue
Block a user