Skip to content
Snippets Groups Projects
Commit b2647a71 authored by Howard Chu's avatar Howard Chu
Browse files

Fix build dependencies. Last try was not parallel-safe.

parent 3c7f51b7
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@ XXXLIBS = $(LTHREAD_LIBS) $(MODULES_LIBS)
BUILD_OPT = "--enable-slapd"
BUILD_SRV = @BUILD_SLAPD@
all-local-srv: backendslib all-cffiles
all-local-srv: all-cffiles
slapd: libbackends.a version.o
$(LTLINK) -o $@ $(OBJS) version.o $(LIBS)
......@@ -48,7 +48,7 @@ slapd: libbackends.a version.o
sslapd: version.o
$(LTLINK) -static -o $@ $(OBJS) version.o $(LIBS)
backendslib: FORCE
.backend: FORCE
@for i in back-*; do \
if [ -d $$i ]; then \
echo " "; echo " cd $$i; $(MAKE) $(MFLAGS) all"; \
......@@ -57,8 +57,6 @@ backendslib: FORCE
done; \
echo " "
.backend:
libbackends.a: .backend
@$(RM) -r tmp
@$(MKDIR) tmp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment