* bootstrap (slurp): Create target directories that don't exist.

Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
This commit is contained in:
Joel E. Denny
2007-07-17 02:28:28 +00:00
parent 6ce2d93a9b
commit 953b39351a
4 changed files with 21 additions and 1 deletions

View File

@@ -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>
* LR0.c (new_itemsets): Fix wording in comments: say item index rather

View File

@@ -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

View File

@@ -9,6 +9,7 @@ c-ctype.h
c-strcase.h
c-strcasecmp.c
c-strncasecmp.c
config.charset
config.h
config.hin
configmake.h
@@ -32,6 +33,8 @@ hash.c
hash.h
inttypes.h
inttypes_.h
localcharset.c
localcharset.h
malloc.c
mbswidth.c
mbswidth.h
@@ -42,6 +45,8 @@ quote.c
quote.h
quotearg.c
quotearg.h
ref-add.sin
ref-del.sin
stamp-h1
stdbool.h
stdbool_.h
@@ -52,6 +57,7 @@ stdio-safer.h
stdlib.h
stdlib_.h
stpcpy.c
streq.h
strerror.c
string.h
string_.h
@@ -66,12 +72,15 @@ unistd--.h
unistd-safer.h
unistd.h
unistd_.h
unitypes.h
uniwidth.h
unlocked-io.h
verify.h
wchar.h
wchar_.h
wctype.h
wctype_.h
wcwidth.c
wcwidth.h
xalloc-die.c
xalloc.h

View File

@@ -26,6 +26,7 @@ javaexec.m4
lib-ld.m4
lib-link.m4
lib-prefix.m4
localcharset.m4
longlong.m4
mbrtowc.m4
mbstate_t.m4