From: Michael Adam Date: Fri, 15 Aug 2008 21:17:48 +0000 (+0200) Subject: build: fix a typo in the installlibtalloc rule. X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=04974818bda75c4315ad09b623e5df55c87dbc87;p=thirdparty%2Fsamba.git build: fix a typo in the installlibtalloc rule. The symlink liballoc.so -> libtalloc.so.1 would have been created unconditionally, independent of the existence of libtalloc.so.1. Michael --- diff --git a/source/Makefile.in b/source/Makefile.in index b965262b80f..938d711827c 100644 --- a/source/Makefile.in +++ b/source/Makefile.in @@ -1599,7 +1599,7 @@ installlibtalloc:: installdirs libtalloc @$(SHELL) $(srcdir)/script/installdirs.sh $(INSTALLPERMS_BIN) $(DESTDIR) $(LIBDIR) -$(INSTALLLIBCMD_SH) $(LIBTALLOC_SHARED_TARGET_SONAME) $(DESTDIR)$(LIBDIR) @rm -f $(DESTDIR)$(LIBDIR)/`basename $(LIBTALLOC_SHARED_TARGET)` - -if test -e $(LIBTALLOC_SHARD_TARGET_SONAME) ; then \ + -if test -e $(LIBTALLOC_SHARED_TARGET_SONAME) ; then \ ln -s -f `basename $(LIBTALLOC_SHARED_TARGET_SONAME)` \ $(DESTDIR)$(LIBDIR)/`basename $(LIBTALLOC_SHARED_TARGET)` ; \ fi