From 030b65d4d734ea3e8bc2d5c70b0ae2fdccff057c Mon Sep 17 00:00:00 2001 From: Celeste <20312-Celeste@users.gitlab.alpinelinux.org> Date: Tue, 14 May 2024 03:38:19 +0000 Subject: [PATCH] community/kakoune: package with -j1 race condition causes make to try to install manpage before `man1` directory is created --- community/kakoune/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community/kakoune/APKBUILD b/community/kakoune/APKBUILD index b6d3775e17e..bd029e8e384 100644 --- a/community/kakoune/APKBUILD +++ b/community/kakoune/APKBUILD @@ -24,7 +24,7 @@ check() { } package() { - make PREFIX="/usr" DESTDIR="$pkgdir/" debug=no install + make -j1 PREFIX="/usr" DESTDIR="$pkgdir/" debug=no install install -Dm644 "$srcdir"/alpine-linux.kak \ -t "$pkgdir"/usr/share/kak/autoload/filetype/ }