* rmsym: Don't use ranlib.

This commit is contained in:
Christopher Faylor
2003-07-07 05:32:24 +00:00
parent c0a6fcd75b
commit a711a5af45
2 changed files with 6 additions and 4 deletions

View File

@@ -2,10 +2,8 @@
lib=$1; shift
nm=$1; shift
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][0-9]*.o:/ {obj=$1} '"/$grepit/"'{print obj}'`
[ -n "$objs" ] || exit 1
$ar d $lib $objs
$ranlib $lib
$ar ds $lib $objs