[SCM] Samba Shared Repository - branch v3-2-test updated - initial-v3-2-test-2520-g826b9ab

Michael Adam obnox at samba.org
Mon Feb 25 16:25:32 GMT 2008


The branch, v3-2-test has been updated
       via  826b9ab07b58ca39350cca921002a4213ce7c7c9 (commit)
      from  2e4028162f3a93c677a57b96de8f0cb2f892e73b (commit)

http://gitweb.samba.org/?samba.git;a=shortlog;h=v3-2-test


- Log -----------------------------------------------------------------
commit 826b9ab07b58ca39350cca921002a4213ce7c7c9
Author: Michael Adam <obnox at samba.org>
Date:   Mon Feb 25 17:24:52 2008 +0100

    Fix build on some systems : don't pass libraries to mkproto.awk
    
    Currently, some static libraries have gone into object lists
    that are also passed to make proto. (This should probably be
    changed...) Then some awk versions fail when passed an non-
    existing lib/libtdb.a e.g.. This patch changes mkproto.sh to
    exclude \.a files from the list of files to process.
    
    Michael

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

Summary of changes:
 source/script/mkproto.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/script/mkproto.sh b/source/script/mkproto.sh
index e46e73e..8561f42 100755
--- a/source/script/mkproto.sh
+++ b/source/script/mkproto.sh
@@ -25,7 +25,7 @@ header="$1"
 shift
 headertmp="$header.$$.tmp~"
 
-proto_src="`echo $@ | tr ' ' '\n' | sed -e 's/\.o/\.c/g' | sort | uniq | egrep -v 'tdb/|wrapped|modules/getdate'`"
+proto_src="`echo $@ | tr ' ' '\n' | sed -e 's/\.o/\.c/g' | sort | uniq | egrep -v 'tdb/|wrapped|modules/getdate' | egrep -v '\.a$'`"
 
 echo creating $header
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list