diff options
author | Breno Leitao <breno.leitao@gmail.com> | 2017-04-13 17:34:26 +0000 |
---|---|---|
committer | Breno Leitao <breno.leitao@gmail.com> | 2017-04-13 17:41:47 +0000 |
commit | 0559d23c0a866afc52fcbe703079a2c8e6c8f2a4 (patch) | |
tree | 3f8dc0086e146a9d173e72dde382a8881f0777f1 | |
parent | 72cfe7bdda929c4982368c1ebcb81626a7e6b6fe (diff) | |
download | aports-0559d23c0a866afc52fcbe703079a2c8e6c8f2a4.tar.bz2 aports-0559d23c0a866afc52fcbe703079a2c8e6c8f2a4.tar.xz |
community/libevhtp: Fix build
Currently this package fails to build due to what seems to be an
extra line between cmake and ./ added in commit 58744e6bc853
-rw-r--r-- | community/libevhtp/APKBUILD | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/community/libevhtp/APKBUILD b/community/libevhtp/APKBUILD index 10f8d7ce86..2fd0fdc842 100644 --- a/community/libevhtp/APKBUILD +++ b/community/libevhtp/APKBUILD @@ -29,9 +29,7 @@ build() { -DCMAKE_INSTALL_PREFIX=/usr \ -DCUSTOM_DOCDIR="/usr/share/doc/${pkgname}" \ -DCUSTOM_SHAREDIR="/usr/share/${pkgname}" \ - -DEVHTP_BUILD_SHARED=ON \ - - . + -DEVHTP_BUILD_SHARED=ON . make || return 1 } |