From: Gary V. Vaughan Date: Mon, 21 Jun 2004 13:44:14 +0000 (+0000) Subject: From Ralf Wildenhues : X-Git-Tag: release-1-9b~65 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b519b39fdb9779b65c46dafebaae62ed626618c;p=thirdparty%2Flibtool.git From Ralf Wildenhues : * libtoolize.in: Quote $# to make sh.test happy again. --- diff --git a/ChangeLog b/ChangeLog index 923668801..e60159bd7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2004-06-21 Gary V. Vaughan + From Ralf Wildenhues : + * libtoolize.in: Quote $# to make sh.test happy again. + * m4/ltdl.m4 (AC_WITH_LTDL): Remove redundant AC_REQUIRE calls. Either set variables to allow a client to link with the installed libltdl, or else compile a local libltdl as a convenience library. diff --git a/libtoolize.in b/libtoolize.in index b9683c18d..038669366 100644 --- a/libtoolize.in +++ b/libtoolize.in @@ -212,7 +212,7 @@ func_version () --install|-i) opt_install=: ;; --ltdl) ltdldir=libltdl - if test $# -gt 0; then + if test "$#" -gt 0; then case $1 in -*) ;; *) ltdldir="$1"; shift ;;