]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libtool.m4 (_LT_AC_FILE_LTDLL_C): Be carefule that the start
authorGary V. Vaughan <gary@gnu.org>
Sat, 22 Sep 2001 14:35:03 +0000 (14:35 +0000)
committerGary V. Vaughan <gary@gnu.org>
Sat, 22 Sep 2001 14:35:03 +0000 (14:35 +0000)
marker searched for by sed must start in column 0.
(_LT_AC_FILE_IMPGEN_C): Ditto.
Reported by Tor Lillqvist <tml@iki.fi>

ChangeLog
libtool.m4

index 534993047c869d916ae1366ca61c28243eb6819c..c0bbbd2c6e843561baf94aa950f9294184881974 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-09-22  Gary V. Vaughan  <gary@gnu.org>
+
+       * libtool.m4 (_LT_AC_FILE_LTDLL_C): Be carefule that the start
+       marker searched for by sed must start in column 0.
+       (_LT_AC_FILE_IMPGEN_C): Ditto.
+       Reported by Tor Lillqvist <tml@iki.fi>
+
 2001-09-22  Tor Lillqvist  <tml@iki.fi>
 
        * libtool.m4 [mingw* cygwin*]: Small improvement for mingw-hosted
index c568ebc9f8ec47d9c1a63b48a0273325a5171cdd..a360490aca1def7be836a9851197a6b02fa86ee0 100644 (file)
@@ -5094,8 +5094,9 @@ fi
 
 # _LT_AC_FILE_LTDLL_C
 # -------------------
-AC_DEFUN([_LT_AC_FILE_LTDLL_C],
-[# /* ltdll.c starts here */
+# Be careful that the start marker always follows a newline.
+AC_DEFUN([_LT_AC_FILE_LTDLL_C], [
+# /* ltdll.c starts here */
 # #define WIN32_LEAN_AND_MEAN
 # #include <windows.h>
 # #undef WIN32_LEAN_AND_MEAN
@@ -5133,8 +5134,9 @@ AC_DEFUN([_LT_AC_FILE_LTDLL_C],
 
 # _LT_AC_FILE_IMPGEN_C
 # --------------------
-AC_DEFUN([_LT_AC_FILE_IMPGEN_C],
-[# /* impgen.c starts here */
+# Be careful that the start marker always follows a newline.
+AC_DEFUN([_LT_AC_FILE_IMPGEN_C], [
+# /* impgen.c starts here */
 # /*   Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
 #
 #  This file is part of GNU libtool.