Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-07-07 09:32:24 +0400
committerChristopher Faylor <me@cgf.cx>2003-07-07 09:32:24 +0400
commita711a5af45a8ab064c766da2e50dd691ecb82460 (patch)
tree3d72ce913e7e51d7d3cd6e50ff6266019f834f16 /winsup/cygwin/rmsym
parentc0a6fcd75b58fd2fa7923e4a3cc59a1afaacc76d (diff)
* rmsym: Don't use ranlib.
Diffstat (limited to 'winsup/cygwin/rmsym')
-rwxr-xr-xwinsup/cygwin/rmsym4
1 files changed, 1 insertions, 3 deletions
diff --git a/winsup/cygwin/rmsym b/winsup/cygwin/rmsym
index fcd458e54..1549eed99 100755
--- a/winsup/cygwin/rmsym
+++ b/winsup/cygwin/rmsym
@@ -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