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