From: Gary V. Vaughan Date: Tue, 14 Oct 2003 22:52:57 +0000 (+0000) Subject: * libtoolize.in (func_mkdir_p): Synch with tests/defs; if there X-Git-Tag: release-1-9b~301 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=457332be04fe772201d658c7b6b874be79d67348;p=thirdparty%2Flibtool.git * libtoolize.in (func_mkdir_p): Synch with tests/defs; if there are no more directories in the stack, break out of the loop. --- diff --git a/ChangeLog b/ChangeLog index a41bd23b5..352752d87 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2003-10-14 Gary V. Vaughan + * 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. diff --git a/libtoolize.in b/libtoolize.in index 182e3decd..fc732a06b 100644 --- a/libtoolize.in +++ b/libtoolize.in @@ -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