From 0e5db0bfe8f7c4260dbdf651b169c6d3a0f8773c Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Mon, 7 Jul 2003 05:23:35 +0000 Subject: * newsym: Create objects that are closer to those created by dlltool so as not to confuse --export-all-symbols. * rmsym: Be a little more accepting of object filenames now that dlltool can create different format files. --- winsup/cygwin/rmsym | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'winsup/cygwin/rmsym') diff --git a/winsup/cygwin/rmsym b/winsup/cygwin/rmsym index 428aa9d50..fcd458e54 100755 --- a/winsup/cygwin/rmsym +++ b/winsup/cygwin/rmsym @@ -5,7 +5,7 @@ ar=$1; shift ranlib=$1; shift grepit=`echo $* | sed 's/ /\$|__imp__/g'` [ -n "$grepit" ] && grepit="__imp__$grepit\$" -objs=`$nm $lib | awk -F: '/^d[0-9]*.o:/ {obj=$1} '"/$grepit/"'{print obj}'` +objs=`$nm $lib | awk -F: '/^d*[0-9][0-9]*.o:/ {obj=$1} '"/$grepit/"'{print obj}'` [ -n "$objs" ] || exit 1 $ar d $lib $objs $ranlib $lib -- cgit v1.2.3