* gendef: Delete unneeded read from <IN> which ate an arbitrary line from

cygwin.din.
This commit is contained in:
Christopher Faylor 2012-08-15 17:07:47 +00:00
parent d57a4725b1
commit 0427598641
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2012-08-15 Christopher Faylor <me.cygwin2012@cgf.cx>
* gendef: Delete unneeded read from <IN> which ate an arbitrary line
from cygwin.din.
2012-08-15 Christopher Faylor <me.cygwin2012@cgf.cx>
* exceptions.cc (sigdelayed): Move declaration to sigproc.h.

View File

@ -1,5 +1,5 @@
#!/usr/bin/perl
# Copyright 2003, 2004, 2005, 2006, 2008, 2009, 2010 Red Hat, Inc.
# Copyright 2003, 2004, 2005, 2006, 2008, 2009, 2010, 2011, 2012 Red Hat, Inc.
#
# This file is part of Cygwin.
#
@ -28,7 +28,6 @@ while (<IN>) {
push(@top, cleanup $_);
last if /^\s*exports\s*$/i;
}
my $libline = cleanup scalar(<IN>);
my @in = cleanup <IN>;
close(IN);