1From 7bcf47c1d9ca5eb27da088f93387e42b55d6999c Mon Sep 17 00:00:00 2001 2From: Khem Raj <raj.khem@gmail.com> 3Date: Thu, 19 Dec 2019 13:22:38 -0800 4Subject: [PATCH] Append LIB_ARCH to lib 5 6Creating subdir under lib is not expected in OE, instead it should be 7appending to lib so it becomes lib64 when needed and LIB_ARCH can be set 8in evnironment 9 10Upstream-Status: Pending 11Signed-off-by: Khem Raj <raj.khem@gmail.com> 12--- 13 quazip/quazip.pro | 2 +- 14 1 file changed, 1 insertion(+), 1 deletion(-) 15 16diff --git a/quazip/quazip.pro b/quazip/quazip.pro 17index 3e10f36..1ea073e 100644 18--- a/quazip/quazip.pro 19+++ b/quazip/quazip.pro 20@@ -42,7 +42,7 @@ CONFIG(debug, debug|release) { 21 unix:!symbian { 22 headers.path=$$PREFIX/include/quazip 23 headers.files=$$HEADERS 24- target.path=$$PREFIX/lib/$${LIB_ARCH} 25+ target.path=$$PREFIX/lib$${LIB_ARCH} 26 INSTALLS += headers target 27 28 OBJECTS_DIR=.obj 29-- 302.24.1 31 32