* speclib: Remove temp files automatically.
This commit is contained in:
parent
444604889b
commit
3b789217ae
|
@ -1,3 +1,7 @@
|
||||||
|
2002-01-01 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
|
* speclib: Remove temp files automatically.
|
||||||
|
|
||||||
2002-01-01 Corinna Vinschen <corinna@vinschen.de>
|
2002-01-01 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* fhandler.h (fhandler_socket::sun_path): New private member.
|
* fhandler.h (fhandler_socket::sun_path): New private member.
|
||||||
|
|
|
@ -6,7 +6,7 @@ lib=$1; shift
|
||||||
nm=$1; shift
|
nm=$1; shift
|
||||||
dlltool=$1; shift
|
dlltool=$1; shift
|
||||||
def=$1; shift
|
def=$1; shift
|
||||||
# trap "rm /tmp/$$.def" 0 1 2 15
|
trap "rm /tmp/$$.def" 0 1 2 15
|
||||||
(echo "LIBRARY cygwin1.dll
|
(echo "LIBRARY cygwin1.dll
|
||||||
EXPORTS"; $nm --extern-only --defined-only $* | sed -e '/^[ ]*$/d' -e '/:$/d' -e 's/^.* _\(.*\)/\1/' | grep $v -f - -w $def |egrep -vi '^library|exports|^$' | sort) > /tmp/$$.def
|
EXPORTS"; $nm --extern-only --defined-only $* | sed -e '/^[ ]*$/d' -e '/:$/d' -e 's/^.* _\(.*\)/\1/' | grep $v -f - -w $def |egrep -vi '^library|exports|^$' | sort) > /tmp/$$.def
|
||||||
exec $dlltool -d /tmp/$$.def -l "$lib" -D /dev/null
|
exec $dlltool -d /tmp/$$.def -l "$lib" -D /dev/null
|
||||||
|
|
Loading…
Reference in New Issue