Skip to content
Snippets Groups Projects
Verified Commit 3207a198 authored by Anna Wilcox's avatar Anna Wilcox :fox:
Browse files

user/apache-httpd: fix package() on very high core count CPUs

It tried creating directories multiple times without -p, so it failed.
parent 948e39e3
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ build() {
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
make DESTDIR="$pkgdir" -j1 install
# apache-provided configuration is awful
rm "$pkgdir"/etc/apache2/*.conf
......@@ -85,7 +85,6 @@ package() {
install -Dm644 "$srcdir"/apache-httpd.confd "$pkgdir"/etc/conf.d/apache-httpd
install -Dm644 "$srcdir"/apache-httpd.logrotate "$pkgdir"/etc/logrotate.d/apache-httpd
install -d "$pkgdir"/var/www
install -dm2750 -g wheel "$pkgdir"/var/log/apache2
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment