diff options
Diffstat (limited to 'main/apache2')
-rw-r--r-- | main/apache2/APKBUILD | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/main/apache2/APKBUILD b/main/apache2/APKBUILD index 8369d45f26..a3e0ee858e 100644 --- a/main/apache2/APKBUILD +++ b/main/apache2/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=apache2 pkgver=2.4.9 -pkgrel=0 +pkgrel=1 pkgdesc="A high performance Unix-based HTTP server" url="http://httpd.apache.org/" arch="all" @@ -106,6 +106,15 @@ package() { ln -fs /var/run/apache2 "$pkgdir"/var/www/run ln -fs /usr/lib/apache2 "$pkgdir"/var/www/modules ln -fs /etc/apache2/conf.d "$pkgdir"/var/www/conf.d + + # verify all MPMs are built + # ref #2866 + for i in prefork event worker; do + if ! [ -e "$pkgdir"/usr/lib/apache2/mod_mpm_$i.so ]; then + error "$i MPM was not built" + return 1 + fi + done } # include the builddir and apxs in -dev package |