summaryrefslogtreecommitdiff
path: root/buildtools/scripts
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-04-20 13:51:16 +1000
committerAndrew Tridgell <tridge@samba.org>2010-04-20 15:50:26 +1000
commitcdaac0afc12d155417764baa135bf29067103da4 (patch)
tree216e6361682cb58c618a333f86f8b1a1aeb5d7e9 /buildtools/scripts
parent0e56037129fb9ddca1ace8b18126e56cd587c5a6 (diff)
downloadsamba-cdaac0afc12d155417764baa135bf29067103da4.tar.gz
build: include uninitialised data in the ABI symbols
This is needed for symbols like tdb_null in tdb, which are part of the public ABI Pair-Programmed-With: Rusty Russell <rusty@samba.org>
Diffstat (limited to 'buildtools/scripts')
-rwxr-xr-xbuildtools/scripts/abi_gen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/scripts/abi_gen.sh b/buildtools/scripts/abi_gen.sh
index ce589c292e3..e7fec4fccc4 100755
--- a/buildtools/scripts/abi_gen.sh
+++ b/buildtools/scripts/abi_gen.sh
@@ -10,7 +10,7 @@ cat <<EOF
set height 0
set width 0
EOF
-nm $SHAREDLIB | cut -d' ' -f2- | egrep '^[DGTRVW]' | grep -v @ | cut -c3- | sort | while read s; do
+nm $SHAREDLIB | cut -d' ' -f2- | egrep '^[BDGTRVW]' | grep -v @ | cut -c3- | sort | while read s; do
echo "echo $s: "
echo p $s
done