diff options
author | Christopher Faylor <me@cgf.cx> | 2002-01-24 21:39:09 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-01-24 21:39:09 +0000 |
commit | dfb4c34707e943d991c3922d3b69e31459cb14e3 (patch) | |
tree | ccc529bfe913d703766bc05fbab090ace66edb27 /winsup/cygwin/speclib | |
parent | 3aad7c8a621454607f964f1786b1ca5b7a87b89e (diff) | |
download | cygnal-dfb4c34707e943d991c3922d3b69e31459cb14e3.tar.gz cygnal-dfb4c34707e943d991c3922d3b69e31459cb14e3.tar.bz2 cygnal-dfb4c34707e943d991c3922d3b69e31459cb14e3.zip |
* speclib: Ensure that temporary def file is removed.
Diffstat (limited to 'winsup/cygwin/speclib')
-rwxr-xr-x | winsup/cygwin/speclib | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/speclib b/winsup/cygwin/speclib index a868701ae..6f8e0cd73 100755 --- a/winsup/cygwin/speclib +++ b/winsup/cygwin/speclib @@ -20,4 +20,4 @@ def=$1; shift trap "rm -f /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 --as=$as -d /tmp/$$.def -l "$lib" +$dlltool --as=$as -d /tmp/$$.def -l "$lib" |