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

Michael Adam obnox at samba.org
Thu Jul 10 21:35:23 GMT 2008


The branch, v3-2-test has been updated
       via  f4d26db5dfccb962f5ca2cc03e9012a9883e16d8 (commit)
      from  43891c397849ccc9c64e5252b6c0350beb754087 (commit)

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


- Log -----------------------------------------------------------------
commit f4d26db5dfccb962f5ca2cc03e9012a9883e16d8
Author: Michael Adam <obnox at samba.org>
Date:   Thu Jul 10 22:49:50 2008 +0200

    build: fix bug #5608: link creation for libtalloc.so.1 (and friends) on solaris 8
    
    on solaris, ln -s -f does not remove the link if it exists.
    
    Michael

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

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


Changeset truncated at 500 lines:

diff --git a/source/Makefile.in b/source/Makefile.in
index d63063d..111ddc8 100644
--- a/source/Makefile.in
+++ b/source/Makefile.in
@@ -1591,6 +1591,7 @@ $(LIBTALLOC_SHARED_TARGET): $(BINARY_PREREQS) $(LIBTALLOC_OBJ) $(LIBTALLOC_SYMS)
 	@echo Linking shared library $@
 	@$(SHLD_DSO) $(LIBTALLOC_OBJ) \
 		@SONAMEFLAG@`basename $@`.$(SONAME_VER)
+	@rm -f $@.$(SONAME_VER)
 	@ln -s -f `basename $@` $@.$(SONAME_VER)
 
 $(LIBTALLOC_STATIC_TARGET): $(BINARY_PREREQS) $(LIBTALLOC_OBJ0)
@@ -1604,6 +1605,7 @@ $(LIBTDB_SHARED_TARGET): $(BINARY_PREREQS) $(LIBTDB_OBJ) $(LIBTDB_SYMS)
 	@echo Linking shared library $@
 	@$(SHLD_DSO) $(LIBTDB_OBJ) \
 		@SONAMEFLAG@`basename $@`.$(SONAME_VER)
+	@rm -f $@.$(SONAME_VER)
 	@ln -s -f `basename $@` $@.$(SONAME_VER)
 
 $(LIBTDB_STATIC_TARGET): $(BINARY_PREREQS) $(LIBTDB_OBJ0)
@@ -1617,6 +1619,7 @@ $(LIBWBCLIENT_SHARED_TARGET): $(BINARY_PREREQS) $(LIBWBCLIENT_OBJ) $(LIBWBCLIENT
 	@echo Linking shared library $@
 	@$(SHLD_DSO) @LIBTALLOC_LIBS@ $(LIBWBCLIENT_OBJ) \
 		@SONAMEFLAG@`basename $@`.$(SONAME_VER)
+	@rm -f $@.$(SONAME_VER)
 	@ln -s -f `basename $@` $@.$(SONAME_VER)
 
 $(LIBWBCLIENT_STATIC_TARGET): $(BINARY_PREREQS) $(LIBWBCLIENT_OBJ0) $(WBCOMMON_OBJ)
@@ -1642,6 +1645,7 @@ $(LIBNETAPI_SHARED_TARGET): $(BINARY_PREREQS) $(LIBNETAPI_OBJ) $(LIBNETAPI_SYMS)
 		@LIBTALLOC_LIBS@ @LIBTDB_LIBS@ @LIBWBCLIENT_SHARED@ $(LIBS) \
 		$(LDAP_LIBS) $(KRB5LIBS) $(NSCD_LIBS) \
 		@SONAMEFLAG@`basename $@`.$(SONAME_VER)
+	@rm -f $@.$(SONAME_VER)
 	@ln -s -f `basename $@` $@.$(SONAME_VER)
 
 $(LIBNETAPI_STATIC_TARGET): $(BINARY_PREREQS) $(LIBNETAPI_OBJ1)


-- 
Samba Shared Repository


More information about the samba-cvs mailing list