diff options
author | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2021-02-24 11:53:03 +0100 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2021-02-25 14:41:40 +0100 |
commit | f6b175a9bfa3a2d9ebc8672eaedf206b41d0f98b (patch) | |
tree | 0752e0e4a460f81834ab840eb1b21839cf9ebe33 /package/libs/zlib/patches/005-relative-pkg-config-paths.patch | |
parent | a75520c678506575ec61ab6c9925364983c5be36 (diff) | |
download | upstream-f6b175a9bfa3a2d9ebc8672eaedf206b41d0f98b.tar.gz upstream-f6b175a9bfa3a2d9ebc8672eaedf206b41d0f98b.tar.bz2 upstream-f6b175a9bfa3a2d9ebc8672eaedf206b41d0f98b.zip |
zlib: properly split patches
This package had two patches (with two headers etc.) in one file,
which would have quilt merging them during a refresh.
Separate these patches into two files, as the original intent seems
to be having them separate.
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
(cherry picked from commit 221eefaf6b301043c491aab8815fcfa24e8a5583)
Diffstat (limited to 'package/libs/zlib/patches/005-relative-pkg-config-paths.patch')
-rw-r--r-- | package/libs/zlib/patches/005-relative-pkg-config-paths.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/libs/zlib/patches/005-relative-pkg-config-paths.patch b/package/libs/zlib/patches/005-relative-pkg-config-paths.patch new file mode 100644 index 0000000000..c86d19b412 --- /dev/null +++ b/package/libs/zlib/patches/005-relative-pkg-config-paths.patch @@ -0,0 +1,14 @@ +--- a/zlib.pc.cmakein ++++ b/zlib.pc.cmakein +@@ -1,8 +1,8 @@ + prefix=@CMAKE_INSTALL_PREFIX@ + exec_prefix=@CMAKE_INSTALL_PREFIX@ +-libdir=@INSTALL_LIB_DIR@ +-sharedlibdir=@INSTALL_LIB_DIR@ +-includedir=@INSTALL_INC_DIR@ ++libdir=${exec_prefix}/lib ++sharedlibdir=${exec_prefix}/lib ++includedir=${prefix}/include + + Name: zlib + Description: zlib compression library |