diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2020-02-22 12:35:46 +0100 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2020-02-22 12:35:46 +0100 |
commit | e160fc1080e0cd164ace3f989739131c0216563d (patch) | |
tree | 5c6f482cf989eca427096b80558124208fe2b373 /community/libphonenumber/APKBUILD | |
parent | c72bd0f93761f84ae6e5bcf0ec9d55c43abe6f54 (diff) | |
download | aports-e160fc1080e0cd164ace3f989739131c0216563d.tar.bz2 aports-e160fc1080e0cd164ace3f989739131c0216563d.tar.xz |
community/libphonenumber: disable CMake None build type (hotfix)
Already tried getting this to work with the None build type but failed.
To unblock the builders lets just temporarily switch to a different
build type for now. This is not intended to be a long term solution.
Diffstat (limited to 'community/libphonenumber/APKBUILD')
-rw-r--r-- | community/libphonenumber/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/community/libphonenumber/APKBUILD b/community/libphonenumber/APKBUILD index bc92aabaa9..170abd937d 100644 --- a/community/libphonenumber/APKBUILD +++ b/community/libphonenumber/APKBUILD @@ -15,8 +15,9 @@ source="$pkgname-$pkgver.tar.gz::https://github.com/googlei18n/libphonenumber/ar build() { cd "$builddir/cpp" + # TODO: Switch to the CMake None build type. cmake \ - -DCMAKE_BUILD_TYPE=None \ + -DCMAKE_BUILD_TYPE=MinSizeRel \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib make |