* ltmain.in (win32_libid): Fixed sed expression error in

win32_nmres evaluation.
This commit is contained in:
Naofumi Yasufuku 2003-03-31 16:06:45 +00:00 committed by Robert Boehne
parent b73fbd17b3
commit 363b0083e0
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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