]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libtool.m4 (AC_LIBTOOL_SETUP): CVS autoconf no longer sets
authorPavel Roskin <pavel_roskin@geocities.com>
Sat, 6 May 2000 10:24:27 +0000 (10:24 +0000)
committerGary V. Vaughan <gary@gnu.org>
Sat, 6 May 2000 10:24:27 +0000 (10:24 +0000)
target to "NONE", but to an empty string.

ChangeLog
libtool.m4

index 131b3a83b35ddd308474e560b344740ee09489a4..cda7ea6826b32487949b6d41926cd47da21c3262 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-05-06  Pavel Roskin  <pavel_roskin@geocities.com>
+
+       * libtool.m4 (AC_LIBTOOL_SETUP): CVS autoconf no longer sets
+       target to "NONE", but to an empty string.
+
 2000-05-05  Paul Sokolovsky  <Paul.Sokolovsky@technologist.com>
 
        * ltdl.c: support lt_dlopen(0) for win32
index 8f94fc7f0dc5a1b4fb5ea74308ae26311980a073..2094a21b51a2a30d5c7903de4bbdd644b9379fed 100644 (file)
@@ -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