diff options
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rwxr-xr-x | winsup/cygwin/gendef | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 8a0b399ba..8c07fd596 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,9 @@ 2013-04-30 Christopher Faylor <me.cygwin2013@cgf.cx> + * gendef: Fix sigfe.s typo. + +2013-04-30 Christopher Faylor <me.cygwin2013@cgf.cx> + * spawn.cc (system_call_cleanup): Rename from pthread_cleanup. Extend functionality. (system_call_cleanup::system_call_cleanup): Set up signals like diff --git a/winsup/cygwin/gendef b/winsup/cygwin/gendef index fc55d96c0..a9906fdaf 100755 --- a/winsup/cygwin/gendef +++ b/winsup/cygwin/gendef @@ -82,7 +82,7 @@ push @top, (map {$_ . " DATA\n"} @data), (map {$_ . "\n"} @text); print OUT @top; close OUT; -open SIGFE, '>', 'sigfe.h' or die "$0: couldn't open 'sigfe.h' file for writing - $!\n"; +open SIGFE, '>', 'sigfe.s' or die "$0: couldn't open 'sigfe.s' file for writing - $!\n"; for my $k (sort keys %sigfe) { print SIGFE fefunc($k, $sigfe{$k}); |