summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ab8d0f4443e5..c2601288dda2 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = openvpn-openssl-1.0
pkgdesc = An easy-to-use, robust and highly configurable VPN (Virtual Private Network) (build against openssl-1.0)
pkgver = 2.4.9
- pkgrel = 1
+ pkgrel = 2
url = https://openvpn.net/index.php/open-source.html
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 32f2b004d70f..aa45971da032 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
pkgname=openvpn-openssl-1.0
_pkgname=openvpn
pkgver=2.4.9
-pkgrel=1
+pkgrel=2
pkgdesc='An easy-to-use, robust and highly configurable VPN (Virtual Private Network) (build against openssl-1.0)'
arch=('i686' 'x86_64')
url='https://openvpn.net/index.php/open-source.html'
@@ -73,7 +73,7 @@ package() {
# Install contrib
for FILE in $(find contrib -type f); do
- case "$(file --brief --mime-type "${FILE}")" in
+ case "$(file --brief --mime-type --no-sandbox "${FILE}")" in
"text/x-shellscript") install -D -m0755 "${FILE}" "${pkgdir}/usr/share/openvpn/${FILE}" ;;
*) install -D -m0644 "${FILE}" "${pkgdir}/usr/share/openvpn/${FILE}" ;;
esac