diff options
author | Michael Adam <obnox@samba.org> | 2008-02-08 00:56:39 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-02-08 00:56:39 +0100 |
commit | 03ccbd47d4e07f565d7a8aa9f0f9b36a48404aac (patch) | |
tree | 7fdd4e7b80155d002817bb021e677823a55710ea /source3 | |
parent | e1af5066d528895e65eae95403b029b65cc6febc (diff) | |
download | samba-03ccbd47d4e07f565d7a8aa9f0f9b36a48404aac.tar.gz samba-03ccbd47d4e07f565d7a8aa9f0f9b36a48404aac.tar.bz2 samba-03ccbd47d4e07f565d7a8aa9f0f9b36a48404aac.zip |
Fix building with "make -j2" or greater by building shared libs first.
Also build libwbclient before the other shared libs so
building libsmbclient (e.g.) won't fail.
Michael
(This used to be commit 09184e774bd7ac6dddc0d2ed8e7806f7707e407c)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 46f7d2649c..5c1beb519b 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -203,7 +203,7 @@ EVERYTHING_PROGS = bin/debug2html@EXEEXT@ bin/smbfilter@EXEEXT@ \ bin/log2pcap@EXEEXT@ bin/sharesec@EXEEXT@ bin/ndrdump@EXEEXT@ \ bin/vlp@EXEEXT@ -SHLIBS = @LIBSMBCLIENT@ @LIBSMBSHAREMODES@ @LIBADDNS@ @LIBNETAPI@ @LIBWBCLIENT@ +SHLIBS = @LIBWBCLIENT@ @LIBSMBCLIENT@ @LIBSMBSHAREMODES@ @LIBADDNS@ @LIBNETAPI@ PAM_MODULES = @PAM_MODULES@ @@ -1044,8 +1044,8 @@ VLP_OBJ = $(VLP_OBJ1) $(PARAM_OBJ) $(LIBSMB_OBJ) \ ###################################################################### # now the rules... ###################################################################### -all : SHOWFLAGS $(SBIN_PROGS) $(BIN_PROGS) $(ROOT_SBIN_PROGS) \ - $(SHLIBS) $(MODULES) $(NSS_MODULES) $(PAM_MODULES) @EXTRA_ALL_TARGETS@ +all : SHOWFLAGS $(SHLIBS) $(SBIN_PROGS) $(BIN_PROGS) $(ROOT_SBIN_PROGS) \ + $(MODULES) $(NSS_MODULES) $(PAM_MODULES) @EXTRA_ALL_TARGETS@ nss_modules : $(NSS_MODULES) |