blob: 547949dd60554356f048f10c878971a0da696bf6 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From de869ad2cb19d81257a159770ebe27593a71593c Mon Sep 17 00:00:00 2001
Patrick Williamsddad1a12017-02-23 20:36:32 -06002From: Hongxu Jia <hongxu.jia@windriver.com>
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08003Date: Tue, 31 Jul 2018 11:29:51 +0800
Patrick Williamsddad1a12017-02-23 20:36:32 -06004Subject: [PATCH] do not strip pdata_tools at do_install
5
6It caused QA Issue:
7--------------
8|ERROR: QA Issue: File '/usr/sbin/pdata_tools' from thin-provisioning-tools
9was already stripped, this will prevent future debugging! [already-stripped]
10--------------
11
12Upstream-Status: Inappropriate [oe specific]
13
14Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
15---
16 Makefile.in | 1 -
17 1 file changed, 1 deletion(-)
18
19diff --git a/Makefile.in b/Makefile.in
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080020index 02b75dd..df590b4 100644
Patrick Williamsddad1a12017-02-23 20:36:32 -060021--- a/Makefile.in
22+++ b/Makefile.in
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080023@@ -267,7 +267,6 @@ MANPAGES:=$(patsubst %,man8/%.8,$(TOOLS))
24 install: bin/pdata_tools $(MANPAGES)
Patrick Williamsddad1a12017-02-23 20:36:32 -060025 $(INSTALL_DIR) $(BINDIR)
26 $(INSTALL_PROGRAM) bin/pdata_tools $(BINDIR)
27- $(STRIP) $(BINDIR)/pdata_tools
28 ln -s -f pdata_tools $(BINDIR)/cache_check
29 ln -s -f pdata_tools $(BINDIR)/cache_dump
30 ln -s -f pdata_tools $(BINDIR)/cache_metadata_size
31--
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800322.7.4
Patrick Williamsddad1a12017-02-23 20:36:32 -060033