Skip to content

Commit 7cbd2c8

Browse files
committed
openssl: use -j1 for make install to avoid permission errors
With parallel make, the install step can fail with "Error 13" (permission denied) when multiple jobs race to run pod2man or write to the same directory simultaneously. MSYS2 upstream hit the same problem and added -j1 for `make install` in their 3.4.0 update (msys2/MINGW-packages@3c238e9727, referencing openssl/openssl#24298). Assisted-by: Claude Opus 4.6 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent db42920 commit 7cbd2c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mingw-w64-openssl/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ _package() {
172172
return
173173
}
174174

175-
make install DESTDIR="${pkgdir}"
175+
make -j1 install DESTDIR="${pkgdir}"
176176

177177
install -Dm644 "${srcdir}/${_realname}-${pkgver}/LICENSE.txt" "${pkgdir}${MINGW_PREFIX}/share/licenses/${_realname}/LICENSE"
178178
}

0 commit comments

Comments
 (0)