This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: [PATCH] Fix Versions bracing


On Wednesday 03 January 2001 18:24, Andreas Jaeger wrote:
> Thanks,
>
> I've committed the patches now - a better check would really be fine,

With this little perl script:

--->
#!/usr/bin/perl
 
$cntl = 0;
$cntr = 0;
while (<>)
{
  $cntl = $cntl + ($_ =~ tr/\{//);
  $cntr = $cntr + ($_ =~ tr/\}//);
};
if ($cntl != $cntr)
{
  print STDERR "$cntl != $cntr\n";
  exit 1;
}
 
exit 0;
---<

and this command line:

	find -name Versions|xargs -n 1 --verbose perl ./chkVersionsBraces.pl

I only found one more.

Franz.

	* sysdeps/sparc/sparc64/soft-fp/Versions: Fix braces.

Index: sysdeps/sparc/sparc64/soft-fp/Versions
===================================================================
RCS file: /cvs/glibc/libc/sysdeps/sparc/sparc64/soft-fp/Versions,v
retrieving revision 1.2
diff -u -p -r1.2 Versions
--- sysdeps/sparc/sparc64/soft-fp/Versions	2000/09/05 10:26:42	1.2
+++ sysdeps/sparc/sparc64/soft-fp/Versions	2001/01/03 18:54:30
@@ -4,4 +4,5 @@ libc {
     _Qp_fle; _Qp_flt; _Qp_fne; _Qp_itoq; _Qp_mul; _Qp_neg; _Qp_qtod; _Qp_qtoi;
     _Qp_qtos; _Qp_qtoui; _Qp_qtoux; _Qp_qtox; _Qp_sqrt; _Qp_stoq; _Qp_sub;
     _Qp_uitoq; _Qp_uxtoq; _Qp_xtoq; __Qp_handle_exceptions;
+  }
 }

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]