blob: 9d25f2c59913ed182b069f803def912a45fb912f [file] [log] [blame]
Andrew Geissler595f6302022-01-24 19:11:47 +00001From 321839cbd1d57f12d3d6695254d2003473d8dd1a Mon Sep 17 00:00:00 2001
2From: Yi Zhao <yi.zhao@windriver.com>
3Date: Wed, 8 Dec 2021 16:58:55 +0800
4Subject: [PATCH] build/top.mk: unset STRIP_OPTS
5
6Unset STRIP_OPTS to disable strip to fix QA errors:
7
8ERROR: openldap-2.5.9-r0 do_package: QA Issue: File
9'/usr/bin/ldapcompare' from openldap was already stripped, this will
10prevent future debugging! [already-stripped]
11
12ERROR: openldap-2.5.9-r0 do_package: QA Issue: File
13'/usr/bin/ldapdelete' from openldap was already stripped, this will
14prevent future debugging! [already-stripped]
15
16Upstream-Status: Inappropriate [embedded specific]
17
18Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
19---
20 build/top.mk | 2 +-
21 1 file changed, 1 insertion(+), 1 deletion(-)
22
23diff --git a/build/top.mk b/build/top.mk
24index 38ce146..6e9fe1f 100644
25--- a/build/top.mk
26+++ b/build/top.mk
27@@ -60,7 +60,7 @@ INSTALL_PROGRAM = $(INSTALL)
28 INSTALL_DATA = $(INSTALL) -m 644
29 INSTALL_SCRIPT = $(INSTALL)
30
31-STRIP_OPTS = -s
32+STRIP_OPTS =
33
34 LINT = lint
35 5LINT = 5lint
36--
372.17.1
38