The branch, v3-2-test has been updated
       via  e233cdeb16e635260197e30528eef20d29678052 (commit)
      from  216623bb706f6b9ca9195829b9f9a8ab8485c44d (commit)

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


- Log -----------------------------------------------------------------
commit e233cdeb16e635260197e30528eef20d29678052
Author: Zach Loafman <[EMAIL PROTECTED]>
Date:   Wed Jul 9 00:05:50 2008 -0700

    Make DSO_EXPORTS_CMD regexp more POSIX compliant
    
    The FreeBSD sed command doesn't understand \? without passing -E to turn
    on extended regexps. This patch changes the DSO_EXPORTS_CMD regexp to a
    POSIX compliant RE by switching the \+ to a \{1,\} bound and the \? to a
    \{0,1\} bound.
    (cherry picked from commit 0acc888ca91a7401c5e54388c58272e263f73069)

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

Summary of changes:
 source/Makefile.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/Makefile.in b/source/Makefile.in
index f85185c..5ed8aae 100644
--- a/source/Makefile.in
+++ b/source/Makefile.in
@@ -25,7 +25,7 @@ [EMAIL PROTECTED]@
 [EMAIL PROTECTED]@
 
 ## Dynamic shared libraries build settings
-DSO_EXPORTS_CMD=-Wl,--version-script,$(srcdir)/exports/`basename $@ | sed 
's/@[EMAIL PROTECTED](.[0-9]\+\)\?$$/@SYMSEXT@/'`
+DSO_EXPORTS_CMD=-Wl,--version-script,$(srcdir)/exports/`basename $@ | sed 
's/@[EMAIL PROTECTED](.[0-9]\{1,\}\)\{0,1\}$$/@SYMSEXT@/'`
 [EMAIL PROTECTED]@
 SHLD_DSO = $(SHLD) $(LDSHFLAGS) $(DSO_EXPORTS) -o $@
 


-- 
Samba Shared Repository

Reply via email to