diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-05-23 04:53:26 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-05-23 04:53:26 +0000 |
commit | 3d5d32826fccec7a6d3517162e38b3c535c805cb (patch) | |
tree | e48ed51c40c73886aacd7fce9ec2f0f9cfb403d6 | |
parent | 2cf5051500fd51fe77ccc53ea45655aeb88d5cc7 (diff) | |
download | samba-3d5d32826fccec7a6d3517162e38b3c535c805cb.tar.gz samba-3d5d32826fccec7a6d3517162e38b3c535c805cb.tar.xz samba-3d5d32826fccec7a6d3517162e38b3c535c805cb.zip |
installman needs to depend on installdirs, to fix parallel
build/install
(This used to be commit 8fa687701a73cbce031cc5550412558a49d697a9)
-rw-r--r-- | source3/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 28b99c6f62b..e6e6903f8cf 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -1140,7 +1140,7 @@ installdat: installdirs installswat: installdirs @$(SHELL) $(srcdir)/script/installswat.sh $(DESTDIR)$(SWATDIR) $(srcdir) -installclientlib: libsmbclient +installclientlib: installdirs libsmbclient -$(INSTALLCLIENTCMD_SH) bin/libsmbclient.@SHLIBEXT@ $(DESTDIR)${prefix}/lib -$(INSTALLCLIENTCMD_A) bin/libsmbclient.a $(DESTDIR)${prefix}/lib @$(SHELL) $(srcdir)/script/installdirs.sh $(DESTDIR)${prefix}/include @@ -1182,7 +1182,7 @@ revert: @$(SHELL) $(srcdir)/script/revert.sh $(SBINDIR) $(SBIN_PROGS) @$(SHELL) $(srcdir)/script/revert.sh $(BINDIR) $(BIN_PROGS) $(SCRIPTS) -installman: +installman: installdirs @$(SHELL) $(srcdir)/script/installman.sh $(DESTDIR)$(MANDIR) $(srcdir) $(man_langs) "@ROFF@" .PHONY: showlayout |