summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorMantas Mikulėnas2021-10-07 12:46:57 +0300
committerMantas Mikulėnas2021-10-07 12:46:57 +0300
commit3baad675ab29031407955ede130bd3f34a1c1c30 (patch)
tree4dec817dff2c14568735d7c23e981de531d54a8c /PKGBUILD
parent5f9cb60c02905a4e618e9a2c2eef91c086ae756e (diff)
downloadaur-3baad675ab29031407955ede130bd3f34a1c1c30.tar.gz
use a more proper "fix" for string.h
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index cbd7c5fc1f52..62d659bff822 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
pkgname=mastercard-pkcs11-tools
pkgver=2.5.0
-pkgrel=1
+pkgrel=2
pkgdesc="Tools to manage objects on PKCS#11 cryptographic tokens"
url="https://github.com/Mastercard/pkcs11-tools"
arch=(x86_64)
@@ -39,7 +39,7 @@ build() {
./configure --prefix=/usr --sysconfdir=/etc
# Hack to fix what the compiler insists is a syntax error
- : > gl/string.h
+ echo '#include_next <string.h>' > gl/string.h
make
}