mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-01-24 14:24:59 +08:00
* 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:
parent
755a452d10
commit
457332be04
@ -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.
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user