Do not fail msys build if there are no pdf files installed.

This commit is contained in:
Stephen Williams 2022-01-15 13:15:12 -08:00
parent fd30e57337
commit 6f114cce17
1 changed files with 1 additions and 1 deletions

View File

@ -34,5 +34,5 @@ package() {
cd "${srcdir}"/../..
mingw32-make DESTDIR="${pkgdir}" install
mkdir -p "${pkgdir}${MINGW_PREFIX}/share/doc/${_realname}"
mv "${pkgdir}${MINGW_PREFIX}"/*.pdf "${pkgdir}${MINGW_PREFIX}/share/doc/${_realname}"
mv "${pkgdir}${MINGW_PREFIX}"/*.pdf "${pkgdir}${MINGW_PREFIX}/share/doc/${_realname}" || true
}