diff options
author | Andreas Baumann <mail@andreasbaumann.cc> | 2019-09-14 14:16:55 +0200 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2019-09-14 14:16:55 +0200 |
commit | 04f6192a5989a7b8e8e5198682b21e52e6f9867a (patch) | |
tree | 439612577ff87f8823a0556f55381c192801fc50 /core | |
parent | c3907019a1a9a3cd0ccd8a1e78e7ff6c4294ac28 (diff) | |
download | packages-04f6192a5989a7b8e8e5198682b21e52e6f9867a.tar.xz |
core/libgpg-error: fix for gawk namespace conflict, see FS#64761
Diffstat (limited to 'core')
-rw-r--r-- | core/libgpg-error/PKGBUILD | 9 |
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 +} |