mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-07 05:10:20 +00:00
lmbench: use base_libdir instead of hardcoded /lib
Fix the below QA warning when building 64bit target: | WARNING: QA Issue: lmbench: Files/directories were installed but not | shipped | /usr/lib | /usr/lib/libmbench.a Signed-off-by: Ting Liu <b28495@freescale.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
+32
@@ -0,0 +1,32 @@
|
|||||||
|
From 0d09e31970616e09beb7f238c2b59bfc541148fb Mon Sep 17 00:00:00 2001
|
||||||
|
From: Ting Liu <b28495@freescale.com>
|
||||||
|
Date: Fri, 22 Nov 2013 15:20:08 +0800
|
||||||
|
Subject: [PATCH] use base_libdir instead of hardcoded /lib
|
||||||
|
|
||||||
|
Upsteam Status: Inappropriate [configuration]
|
||||||
|
|
||||||
|
Signed-off-by: Ting Liu <b28495@freescale.com>
|
||||||
|
---
|
||||||
|
src/Makefile | 4 ++--
|
||||||
|
1 files changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/Makefile b/src/Makefile
|
||||||
|
index c7a8c79..c7e4e3c 100644
|
||||||
|
--- a/src/Makefile
|
||||||
|
+++ b/src/Makefile
|
||||||
|
@@ -143,10 +143,10 @@ install-target:
|
||||||
|
if [ ! -d $(BASE) ]; then mkdir $(BASE); fi
|
||||||
|
if [ ! -d $(BASE)/bin ]; then mkdir $(BASE)/bin; fi
|
||||||
|
if [ ! -d $(BASE)/include ]; then mkdir $(BASE)/include; fi
|
||||||
|
- if [ ! -d $(BASE)/lib ]; then mkdir $(BASE)/lib; fi
|
||||||
|
+ if [ ! -d $(BASE)$(base_libdir) ]; then mkdir $(BASE)$(base_libdir); fi
|
||||||
|
cp $(EXES) $(BASE)/bin
|
||||||
|
cp $(INCS) $(BASE)/include
|
||||||
|
- cp $O/lmbench.a $(BASE)/lib/libmbench.a
|
||||||
|
+ cp $O/lmbench.a $(BASE)$(base_libdir)
|
||||||
|
cd ../doc; env MAKEFLAGS="$(MAKEFLAGS)" make CC="${CC}" OS="${OS}" BASE="$(BASE)" install
|
||||||
|
|
||||||
|
|
||||||
|
--
|
||||||
|
1.7.5.4
|
||||||
|
|
||||||
@@ -15,6 +15,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/lmbench/lmbench-${PV}.tgz \
|
|||||||
file://update-results-script.patch \
|
file://update-results-script.patch \
|
||||||
file://obey-ranlib.patch \
|
file://obey-ranlib.patch \
|
||||||
file://update-config-script.patch \
|
file://update-config-script.patch \
|
||||||
|
file://use-base_libdir-instead-of-hardcoded-lib.patch \
|
||||||
"
|
"
|
||||||
SRC_URI[md5sum] = "b3351a3294db66a72e2864a199d37cbf"
|
SRC_URI[md5sum] = "b3351a3294db66a72e2864a199d37cbf"
|
||||||
SRC_URI[sha256sum] = "cbd5777d15f44eab7666dcac418054c3c09df99826961a397d9acf43d8a2a551"
|
SRC_URI[sha256sum] = "cbd5777d15f44eab7666dcac418054c3c09df99826961a397d9acf43d8a2a551"
|
||||||
|
|||||||
Reference in New Issue
Block a user