From: Ralf Wildenhues Date: Sat, 26 Nov 2005 10:22:23 +0000 (+0000) Subject: * libtool.m4: Fix comment typo. X-Git-Tag: release-1-5-22~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ca7521540a392b6f970154d4f276c7f59d4344e4;p=thirdparty%2Flibtool.git * libtool.m4: Fix comment typo. * tests/dryrun.test: Avoid `directory exists' warning. --- diff --git a/ChangeLog b/ChangeLog index c2058c190..fe011b27d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-11-26 Ralf Wildenhues + + * libtool.m4: Fix comment typo. + * tests/dryrun.test: Avoid `directory exists' warning. + 2005-11-25 Charles Wilson , Peter Ekberg , Ralf Wildenhues diff --git a/libtool.m4 b/libtool.m4 index c82b8a1b3..72fde08fd 100644 --- a/libtool.m4 +++ b/libtool.m4 @@ -2678,7 +2678,7 @@ AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) AC_LIBTOOL_SYS_LIB_STRIP AC_LIBTOOL_DLOPEN_SELF -# Report which librarie types will actually be built +# Report which library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) diff --git a/tests/dryrun.test b/tests/dryrun.test index 0428904b9..7d5e7e9c8 100755 --- a/tests/dryrun.test +++ b/tests/dryrun.test @@ -75,8 +75,8 @@ $make mdemo$EXEEXT mdemo_static$EXEEXT || exit 1 echo "= Running $make install in ../mdemo (dry run)" # Libtool does not create these directories -mkdir $prefix/bin -mkdir $prefix/lib +test -d $prefix/bin || mkdir $prefix/bin +test -d $prefix/lib || mkdir $prefix/lib ls -l . $objdir | grep -v total > $before ls -lR $prefix | grep -v total >> $before force_dry_run=yes $make install 1>&2 || exit 1