summaryrefslogtreecommitdiffstats
diff options
-rwxr-xr-xscripts/find-debuginfo.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/find-debuginfo.in b/scripts/find-debuginfo.in
index 1a4f2a0..b211a3c 100755
--- a/scripts/find-debuginfo.in
+++ b/scripts/find-debuginfo.in
@@ -512,7 +512,7 @@ do_ar_file()
512 # versions to a new archive, in order. 512 # versions to a new archive, in order.
513 513
514 # Create empty output .a; mktemp would create a 0-byte file, which ar rv doesn't like 514 # Create empty output .a; mktemp would create a 0-byte file, which ar rv doesn't like
515 ${AR} r "$tmpa" # no members 515 ${AR} r "$tmpa" 2>/dev/null # no members, suppress "ar: creating foo.a" message
516 516
517 ${AR} tvO "$f" | while read line; do 517 ${AR} tvO "$f" | while read line; do
518 local pattern='^[rwx-]+ [0-9]+/[0-9]+ +([0-9]+) (.................) (.*) (0x[0-9a-f]+)$' 518 local pattern='^[rwx-]+ [0-9]+/[0-9]+ +([0-9]+) (.................) (.*) (0x[0-9a-f]+)$'