summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2019-09-14 14:16:55 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2019-09-14 14:16:55 +0200
commit04f6192a5989a7b8e8e5198682b21e52e6f9867a (patch)
tree439612577ff87f8823a0556f55381c192801fc50 /core
parentc3907019a1a9a3cd0ccd8a1e78e7ff6c4294ac28 (diff)
downloadpackages-04f6192a5989a7b8e8e5198682b21e52e6f9867a.tar.xz
core/libgpg-error: fix for gawk namespace conflict, see FS#64761
Diffstat (limited to 'core')
-rw-r--r--core/libgpg-error/PKGBUILD9
1 files changed, 9 insertions, 0 deletions
diff --git a/core/libgpg-error/PKGBUILD b/core/libgpg-error/PKGBUILD
new file mode 100644
index 00000000..304d11ab
--- /dev/null
+++ b/core/libgpg-error/PKGBUILD
@@ -0,0 +1,9 @@
+# gawk namspace conflict, see FS#63761
+
+prepare() {
+ cd ${pkgname}-${pkgver}
+ sed -i \
+ -e "s/namespace/varerrno/g" \
+ src/{Makefile.am,mkstrtable.awk}
+ ./autogen.sh
+}