[SCM] Samba Shared Repository - branch master updated

Andrew Tridgell tridge at samba.org
Sun Apr 18 01:33:39 MDT 2010


The branch, master has been updated
       via  3f1ebe8... build: don't depend on the word size of nm output
      from  1aa80f5... Second part of fix for bug #7331 - Compound async SMB 2 requests don't work right.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 3f1ebe805bbd38a4cf34f9feb1837f92a8de75d9
Author: Andrew Tridgell <tridge at samba.org>
Date:   Sun Apr 18 17:31:24 2010 +1000

    build: don't depend on the word size of nm output
    
    the first column varies in length for different architectures

-----------------------------------------------------------------------

Summary of changes:
 buildtools/scripts/abi_gen.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/buildtools/scripts/abi_gen.sh b/buildtools/scripts/abi_gen.sh
index fa708dd..ce589c2 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 -c18- | egrep '^[DGTRVW]' | grep -v @ | cut -c3- | sort | while read s; do
+nm $SHAREDLIB | cut -d' ' -f2- | egrep '^[DGTRVW]' | grep -v @ | cut -c3- | sort | while read s; do
     echo "echo $s: "
     echo p $s
 done


-- 
Samba Shared Repository


More information about the samba-cvs mailing list