diff options
author | Rasmus Thomsen <oss@cogitri.dev> | 2020-02-20 18:36:20 +0100 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2020-02-21 18:12:22 +0100 |
commit | c7a1f20490e2882233bfdfa682040d3cb0ffd967 (patch) | |
tree | a2b7e4154d67dc0ad64867ff7507b2883604688b /community/libzip | |
parent | 20b13d17d07ee2958a377d95f3ad14826ff9ddf9 (diff) | |
download | aports-c7a1f20490e2882233bfdfa682040d3cb0ffd967.tar.bz2 aports-c7a1f20490e2882233bfdfa682040d3cb0ffd967.tar.xz |
community/*: make CMake and meson respect our C{,PP,XX}FLAGS
See: https://lists.alpinelinux.org/~alpine/devel/%3C2896c13070c508a49cbaa72c8fb7f34ea947358b.camel%40cogitri.dev%3E
Diffstat (limited to 'community/libzip')
-rw-r--r-- | community/libzip/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/community/libzip/APKBUILD b/community/libzip/APKBUILD index bcba7ca661..05e0af6370 100644 --- a/community/libzip/APKBUILD +++ b/community/libzip/APKBUILD @@ -3,7 +3,7 @@ # Maintainer: Carlo Landmeter <clandmeter@gmail.com> pkgname=libzip pkgver=1.6.1 -pkgrel=0 +pkgrel=1 pkgdesc="C library for manipulating zip archives" url="http://www.nih.at/libzip/index.html" arch="all" @@ -21,7 +21,7 @@ build() { cmake \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib \ - -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_BUILD_TYPE=None \ -DCMAKE_C_FLAGS="$CFLAGS" make } |