* speclib: Remove temp files automatically.

This commit is contained in:
Christopher Faylor 2002-01-02 00:06:35 +00:00
parent 444604889b
commit 3b789217ae
2 changed files with 5 additions and 1 deletions

View File

@ -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>
* fhandler.h (fhandler_socket::sun_path): New private member.

View File

@ -6,7 +6,7 @@ lib=$1; shift
nm=$1; shift
dlltool=$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
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