diff options
author | Hyotaek Shim <hyotaek.shim@samsung.com> | 2022-05-13 17:32:21 +0900 |
---|---|---|
committer | Hyotaek Shim <hyotaek.shim@samsung.com> | 2022-05-13 08:08:25 +0000 |
commit | e3da0a63330947d71cf3996937ee6cf1c11e21e0 (patch) | |
tree | 4426df92446617668283e2b2cc5afda0acbf61cf | |
parent | 60a8c2f47f196e8b707b47abdbf8d80510ef24ab (diff) | |
download | sensor-tizen_6.5.tar.gz sensor-tizen_6.5.tar.bz2 sensor-tizen_6.5.zip |
Fix lib path in .pc file for 64bit buildtizen_6.5
Change-Id: Ifbacd3262eecff25fa4b38e42a8142aad1ad01c7
Signed-off-by: Hyotaek Shim <hyotaek.shim@samsung.com>
-rw-r--r-- | hal-api-sensor.pc | 2 | ||||
-rw-r--r-- | packaging/hal-api-sensor.spec | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/hal-api-sensor.pc b/hal-api-sensor.pc index 4660d41..be266ef 100644 --- a/hal-api-sensor.pc +++ b/hal-api-sensor.pc @@ -3,7 +3,7 @@ package_name=hal-api-sensor prefix=/usr exec_prefix=/usr/bin/hal -libdir=/usr/lib//hal +libdir=@LIBDIR@/hal includedir=/usr/include/hal Name: ${package_name} diff --git a/packaging/hal-api-sensor.spec b/packaging/hal-api-sensor.spec index ca81eea..fa57960 100644 --- a/packaging/hal-api-sensor.spec +++ b/packaging/hal-api-sensor.spec @@ -52,8 +52,8 @@ Sensor HAL(Hardware Abstraction Layer) Test Cases cp %{SOURCE1} . cp %{SOURCE2} . cmake . -DCMAKE_INSTALL_PREFIX=%{_prefix} \ - -DCMAKE_LIBDIR_PREFIX=%{_libdir} \ - -DHALTEST=on + -DCMAKE_LIBDIR_PREFIX=%{_libdir} \ + -DHALTEST=on make %{?jobs:-j%jobs} %install |