Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 836557
Collapse All | Expand All

(-)a/meta-oe/recipes-support/openldap/openldap/0001-ldif-filter-fix-parallel-build-failure.patch (+32 lines)
Line 0 Link Here
1
From 9e4ccd1e78ceac8de1ab66ee62ee216f1fbd4956 Mon Sep 17 00:00:00 2001
2
From: Yi Zhao <yi.zhao@windriver.com>
3
Date: Thu, 2 Dec 2021 11:38:15 +0800
4
Subject: [PATCH] ldif-filter: fix parallel build failure
5
6
Add slapd-common.o as dependency for ldif-filter to fix the parallel
7
build failure:
8
  ld: cannot find slapd-common.o: No such file or directory
9
10
Upstream-Status: Pending
11
12
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
13
---
14
 tests/progs/Makefile.in | 2 +-
15
 1 file changed, 1 insertion(+), 1 deletion(-)
16
17
diff --git a/tests/progs/Makefile.in b/tests/progs/Makefile.in
18
index 13f1e8be2..e4f4ccf98 100644
19
--- a/tests/progs/Makefile.in
20
+++ b/tests/progs/Makefile.in
21
@@ -56,7 +56,7 @@ slapd-modify: slapd-modify.o $(OBJS) $(XLIBS)
22
 slapd-bind: slapd-bind.o $(OBJS) $(XLIBS)
23
 	$(LTLINK) -o $@ slapd-bind.o $(OBJS) $(LIBS)
24
 
25
-ldif-filter: ldif-filter.o $(XLIBS)
26
+ldif-filter: ldif-filter.o $(OBJS) $(XLIBS)
27
 	$(LTLINK) -o $@ ldif-filter.o $(OBJS) $(LIBS)
28
 
29
 slapd-mtread: slapd-mtread.o $(OBJS) $(XLIBS)
30
-- 
31
2.25.1
32

Return to bug 836557