xz: Use relative paths in pkg-config metadata file
authorJeffery To <redacted>
Thu, 2 May 2019 17:17:12 +0000 (01:17 +0800)
committerJeffery To <redacted>
Thu, 2 May 2019 17:17:12 +0000 (01:17 +0800)
By default, the liblzma pkg-config file (liblzma.pc) is generated with
absolute paths, which $(STAGING_DIR_HOST)/bin/pkg-config is unable to
override.

This patches the file to use paths relative to ${prefix} and
${exec_prefix}.

Signed-off-by: Jeffery To <redacted>
utils/xz/Makefile
utils/xz/patches/001-relative-pkg-config-paths.patch [new file with mode: 0644]

index 7b8088354000dd2458ce6ffb7077199c2550d435..0b94e5bdd864e08511255d9beb2ad32caa533a6d 100644 (file)
@@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=xz
 PKG_VERSION:=5.2.4
-PKG_RELEASE:=2
+PKG_RELEASE:=3
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
 PKG_SOURCE_URL:=@SF/lzmautils
diff --git a/utils/xz/patches/001-relative-pkg-config-paths.patch b/utils/xz/patches/001-relative-pkg-config-paths.patch
new file mode 100644 (file)
index 0000000..b89c13f
--- /dev/null
@@ -0,0 +1,13 @@
+--- a/src/liblzma/liblzma.pc.in
++++ b/src/liblzma/liblzma.pc.in
+@@ -7,8 +7,8 @@
+ prefix=@prefix@
+ exec_prefix=@exec_prefix@
+-libdir=@libdir@
+-includedir=@includedir@
++libdir=${exec_prefix}/lib
++includedir=${prefix}/include
+ Name: liblzma
+ Description: General purpose data compression library
git clone https://git.99rst.org/PROJECT