diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-04-20 13:51:16 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-20 15:50:26 +1000 |
commit | cdaac0afc12d155417764baa135bf29067103da4 (patch) | |
tree | 216e6361682cb58c618a333f86f8b1a1aeb5d7e9 /buildtools | |
parent | 0e56037129fb9ddca1ace8b18126e56cd587c5a6 (diff) | |
download | samba-cdaac0afc12d155417764baa135bf29067103da4.tar.gz samba-cdaac0afc12d155417764baa135bf29067103da4.tar.bz2 samba-cdaac0afc12d155417764baa135bf29067103da4.zip |
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')
-rwxr-xr-x | buildtools/scripts/abi_gen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/scripts/abi_gen.sh b/buildtools/scripts/abi_gen.sh index ce589c292e..e7fec4fccc 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 |