summaryrefslogtreecommitdiff
path: root/buildtools/scripts
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-09-07 13:45:46 +1000
committerAndrew Tridgell <tridge@samba.org>2010-09-07 13:45:46 +1000
commit2d77c766faabbc0790427f4c49555d4049efdb3b (patch)
tree4bd3d6b74f82f831c875fbd00ce805ed6f3af899 /buildtools/scripts
parent73c3932b2d0dac784a0605abf6e532dba5514a01 (diff)
downloadsamba-2d77c766faabbc0790427f4c49555d4049efdb3b.tar.gz
waf-abi: fixed small uninitialised data on PPC64
on PPC64 Linux systems a 'S' line from nm means "small object uninitialised data"
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 e7fec4fccc4..7b4cb127130 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 '^[BDGTRVW]' | grep -v @ | cut -c3- | sort | while read s; do
+nm $SHAREDLIB | cut -d' ' -f2- | egrep '^[BDGTRVWS]' | grep -v @ | cut -c3- | sort | while read s; do
echo "echo $s: "
echo p $s
done