OSDN Git Service

* rmsym: Don't use ranlib.
authorcgf <cgf>
Mon, 7 Jul 2003 05:32:24 +0000 (05:32 +0000)
committercgf <cgf>
Mon, 7 Jul 2003 05:32:24 +0000 (05:32 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/rmsym

index e11085f..c2a2e07 100644 (file)
@@ -1,8 +1,12 @@
 2003-07-07  Christopher Faylor  <cgf@redhat.com>
 
+       * rmsym: Don't use ranlib.
+
+2003-07-07  Christopher Faylor  <cgf@redhat.com>
+
        * newsym: Reenable removal of tmp directory.  Just use ar to generate
        archive index.
-       * Makefile.in: Don't send ranlib to newsym.
+       * Makefile.in: Don't send ranlib to newsym or rmsym.
 
 2003-07-07  Christopher Faylor  <cgf@redhat.com>
 
index fcd458e..1549eed 100755 (executable)
@@ -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