Browse Source

Arch: Wine PKGBUILD - ignore non-existent patch files

master
Fincer 5 years ago
parent
commit
ee708f34af
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      arch/0-wine-staging-git/PKGBUILD

+ 3
- 1
arch/0-wine-staging-git/PKGBUILD View File

@ -213,7 +213,9 @@ build() {
msg2 "Applying custom patches..."
for i in "${srcdir}"/*.{patch,diff}; do
patch -Np1 < ${i}
if [[ -f ${i} ]]; then
patch -Np1 < ${i}
fi
done
fi


Loading…
Cancel
Save