]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* ltmain.in (win32_libid): Fixed sed expression error in
authorNaofumi Yasufuku <naofumi@yasufuku.net>
Mon, 31 Mar 2003 16:06:45 +0000 (16:06 +0000)
committerRobert Boehne <rboehne@gnu.org>
Mon, 31 Mar 2003 16:06:45 +0000 (16:06 +0000)
win32_nmres evaluation.

ChangeLog
ltmain.in

index 7f927cbd879e776f4f46f8f8c0007c147151d255..b8f4a21ed6aa199ddcb415030d525fa6284e670a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-03-31  Naofumi Yasufuku  <naofumi@yasufuku.net>
+
+       * ltmain.in (win32_libid): Fixed sed expression error in
+       win32_nmres evaluation.
+
 2003-03-31  Albert Chin  <libtool@thewrittenword.com>
 
        * ltmain.sh: Don't pass -R flags found in a .la's dependency_libs
index f315054657887abc72296256a437ce5e520a3d08..f4aa90d5287eb0c25b48bd820eff78976db1741a 100644 (file)
--- a/ltmain.in
+++ b/ltmain.in
@@ -132,7 +132,7 @@ win32_libid () {
     if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | \
       grep -E 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then
       win32_nmres=`eval $NM -f posix -A $1 | \
-        sed -n -e '1,100{/ I /{x;/import/!{s/^/import/;h;p;};x;}}'`
+       sed -n -e '1,100{/ I /{x;/import/!{s/^/import/;h;p;};x;};}'`
       if test "X$win32_nmres" = "Ximport" ; then
         win32_libid_type="x86 archive import"
       else