summaryrefslogtreecommitdiff
path: root/source3/Makefile.in
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-08-15 23:17:48 +0200
committerMichael Adam <obnox@samba.org>2008-08-15 23:19:54 +0200
commitdfd27586db20ad57001fb75052b72ebfdb8262fd (patch)
tree74ae9530ec74aa3a0b5d629352fddab3a8e69128 /source3/Makefile.in
parent8bda4e059edba4807feeafa88cb90e16ca7a1d91 (diff)
downloadsamba-dfd27586db20ad57001fb75052b72ebfdb8262fd.tar.gz
samba-dfd27586db20ad57001fb75052b72ebfdb8262fd.tar.bz2
samba-dfd27586db20ad57001fb75052b72ebfdb8262fd.zip
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 (This used to be commit 04974818bda75c4315ad09b623e5df55c87dbc87)
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r--source3/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in
index b965262b80..938d711827 100644
--- a/source3/Makefile.in
+++ b/source3/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