* libtoolize.in (func_mkdir_p): Synch with tests/defs; if there

are no more directories in the stack, break out of the loop.
This commit is contained in:
Gary V. Vaughan 2003-10-14 22:52:57 +00:00
parent 755a452d10
commit 457332be04
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2003-10-14 Gary V. Vaughan <gary@gnu.org>
* libtoolize.in (func_mkdir_p): Synch with tests/defs; if there
are no more directories in the stack, break out of the loop.
* tests/Makefile.am (COMMON_TESTS): Remove pdemo-unst.test, which
isn't a real test.

View File

@ -195,6 +195,7 @@ func_mkdir_p ()
while test ! -d "$my_dir"; do
my_dirs="$my_dir $my_dirs"
case $my_dir in */*) ;; *) break ;; esac
my_dir=`echo "$my_dir" | sed "$sed_dirname"`
done
test ! -n "$my_dirs" || $MKDIR $my_dirs