diff options
author | Mateusz Majewski <m.majewski2@samsung.com> | 2020-12-16 07:47:12 +0100 |
---|---|---|
committer | Hyotaek Shim <hyotaek.shim@samsung.com> | 2020-12-16 07:03:07 +0000 |
commit | 1b507a0db03bdfc21643f170a428e7659f0ab337 (patch) | |
tree | 033e0440d1f2e2841a47481dc901de992a65b09f | |
parent | e06466d2463ca60efa738d8b19a8a077d0dcf3d5 (diff) | |
download | lz4-tizen_6.0.tar.gz lz4-tizen_6.0.tar.bz2 lz4-tizen_6.0.zip |
Fix compilation on 64-bit architecturessubmit/tizen_6.0/20201216.071745accepted/tizen/6.0/unified/20201216.075549tizen_6.0accepted/tizen_6.0_unified
RPM expects the libraries to end up in /usr/lib64 then, but the Makefile
puts them in /usr/lib regardless of the architecture. Thankfully, we can
select the location (which also is used in the pkg-config file).
Change-Id: I87496a783ab602770df5619ca57a3295756c0ae4
(cherry picked from commit 1f1a7d807e1d7661015dfc331567bdaadf7e8112)
-rw-r--r-- | packaging/lz4.spec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/lz4.spec b/packaging/lz4.spec index 7918fba..fbbd41f 100644 --- a/packaging/lz4.spec +++ b/packaging/lz4.spec @@ -42,7 +42,7 @@ cp %{SOURCE1} . %__make BUILD_STATIC=0 %{?_smp_mflags} %install -%__make install BUILD_STATIC=0 DESTDIR=%{?buildroot} PREFIX=/usr INSTALL="%{__install} -p" +%__make install BUILD_STATIC=0 DESTDIR=%{?buildroot} PREFIX=/usr LIBDIR=%{_libdir} INSTALL="%{__install} -p" rm %{?buildroot}%{_datadir}/man/man1/lz4.1 rm %{?buildroot}%{_datadir}/man/man1/lz4c.1 rm %{?buildroot}%{_datadir}/man/man1/lz4cat.1 |