]> arthur.barton.de Git - netatalk.git/commitdiff
abigen: fix for gdb syms error
authorRalph Boehme <rb@sernet.de>
Thu, 3 Jul 2014 07:57:42 +0000 (09:57 +0200)
committerRalph Boehme <rb@sernet.de>
Thu, 3 Jul 2014 07:57:42 +0000 (09:57 +0200)
Signed-off-by: Ralph Boehme <rb@sernet.de>
abigen.sh

index 3d3c33dcb4ca8776bbf03b1af19afeaf3d536782..d5a3a2ea964d9e0fb93490091309cd11931ac84f 100755 (executable)
--- a/abigen.sh
+++ b/abigen.sh
@@ -10,7 +10,7 @@ cat <<EOF
 set height 0
 set width 0
 EOF
-nm "$SHAREDLIB" | cut -d' ' -f2- | egrep '^[BDGTRVWS]' | grep -v @ | cut -c3- | sort | while read s; do
+nm "$SHAREDLIB" | cut -d' ' -f2- | egrep '^[BDGTRVWS]' | grep -v @ | cut -c3- | egrep -v '^[_]' | sort | while read s; do
     echo "echo $s: "
     echo p $s
 done