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>2002-01-25 00:39:09 +0300
committerChristopher Faylor <me@cgf.cx>2002-01-25 00:39:09 +0300
commitdfb4c34707e943d991c3922d3b69e31459cb14e3 (patch)
treeccc529bfe913d703766bc05fbab090ace66edb27 /winsup/cygwin/speclib
parent3aad7c8a621454607f964f1786b1ca5b7a87b89e (diff)
* speclib: Ensure that temporary def file is removed.
Diffstat (limited to 'winsup/cygwin/speclib')
-rwxr-xr-xwinsup/cygwin/speclib2
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"