From: Pavel Roskin Date: Sat, 6 May 2000 10:24:27 +0000 (+0000) Subject: * libtool.m4 (AC_LIBTOOL_SETUP): CVS autoconf no longer sets X-Git-Tag: release-1-3d~182 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2b5012f4e707d67c2a4eadef2f499c224ffe543e;p=thirdparty%2Flibtool.git * libtool.m4 (AC_LIBTOOL_SETUP): CVS autoconf no longer sets target to "NONE", but to an empty string. --- diff --git a/ChangeLog b/ChangeLog index 131b3a83b..cda7ea682 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-05-06 Pavel Roskin + + * libtool.m4 (AC_LIBTOOL_SETUP): CVS autoconf no longer sets + target to "NONE", but to an empty string. + 2000-05-05 Paul Sokolovsky * ltdl.c: support lt_dlopen(0) for win32 diff --git a/libtool.m4 b/libtool.m4 index 8f94fc7f0..2094a21b5 100644 --- a/libtool.m4 +++ b/libtool.m4 @@ -80,8 +80,8 @@ file_magic*) ;; esac -case "$target" in -NONE) lt_target="$host" ;; +case "x$target" in +xNONE|x) lt_target="$host" ;; *) lt_target="$target" ;; esac