diff options
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rwxr-xr-x | winsup/cygwin/speclib | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 101bff997..e9263631e 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,9 @@ 2003-08-27 Christopher Faylor <cgf@redhat.com> + * specdir: Correctly remove temporary directory prior to use. + +2003-08-27 Christopher Faylor <cgf@redhat.com> + * sigproc.cc (wait_sig): Count number of iterations through 'more_signals' loop and issue a warning if DEBUGGING and excessive. (WFSO): When debugging and infinite timeout, loop. diff --git a/winsup/cygwin/speclib b/winsup/cygwin/speclib index cd463f808..9de9f50c4 100755 --- a/winsup/cygwin/speclib +++ b/winsup/cygwin/speclib @@ -26,7 +26,7 @@ sort -o /tmp/$$.objs -u /tmp/$$.objs [ -s /tmp/$$.objs ] || { echo "speclib: couldn't find symbols for $lib" 1>&2; exit 1; } -/bin/rm -f /tmp/$$>dir +/bin/rm -rf /tmp/$$.dir mkdir /tmp/$$.dir cd /tmp/$$.dir if v; then |