[SCM] Samba Shared Repository - branch v3-2-test updated - release-3-2-0pre2-2906-ge233cde

Michael Adam obnox at samba.org
Thu Aug 14 15:06:52 GMT 2008


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 <zachary.loafman at isilon.com>
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 @@ SHLD=@SHLD@
 LIB_PATH_VAR=@LIB_PATH_VAR@
 
 ## Dynamic shared libraries build settings
-DSO_EXPORTS_CMD=-Wl,--version-script,$(srcdir)/exports/`basename $@ | sed 's/@SHLIBEXT@\(.[0-9]\+\)\?$$/@SYMSEXT@/'`
+DSO_EXPORTS_CMD=-Wl,--version-script,$(srcdir)/exports/`basename $@ | sed 's/@SHLIBEXT@\(.[0-9]\{1,\}\)\{0,1\}$$/@SYMSEXT@/'`
 DSO_EXPORTS=@DSO_EXPORTS@
 SHLD_DSO = $(SHLD) $(LDSHFLAGS) $(DSO_EXPORTS) -o $@
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list