Ticket #13314: patch-make-exports.pl-leopard

File patch-make-exports.pl-leopard, 512 bytes (added by roland@…, 16 years ago)

Fix invocation of c++filt.

Line 
1--- libstdc++-v3/scripts/make_exports.pl.orig   2007-12-09 18:01:40.000000000 +0100
2+++ libstdc++-v3/scripts/make_exports.pl        2007-12-09 18:02:17.000000000 +0100
3@@ -92,7 +92,7 @@
4 print STDERR $nm.' -P '.(join ' ',@ARGV).'|';
5 open NM,$nm.' -P '.(join ' ',@ARGV).'|' or die $!;
6 # Talk to c++filt through a pair of file descriptors.
7-open2(*FILTIN, *FILTOUT, "c++filt --strip-underscores") or die $!;
8+open2(*FILTIN, *FILTOUT, "c++filt --strip-underscore") or die $!;
9 NAME: while (<NM>) {
10     my $i;
11     chomp;