summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaciek Borzecki2020-05-19 11:39:47 +0200
committerMaciek Borzecki2020-05-19 11:39:47 +0200
commitb94f8f2e1332c9d89fb7ffbd4679c9c0a805ad5a (patch)
tree2c4468ca9e6353072c97965021f6560969ca199e
parent8f8342087095a55ba24063f8e5cb360834fe7517 (diff)
downloadaur-b94f8f2e1332c9d89fb7ffbd4679c9c0a805ad5a.tar.gz
upgpkg: snapd 2.45-3
Fix build with non English locale. Signed-off-by: Maciek Borzecki <maciek.borzecki@gmail.com>
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 524d1c2da6c6..c5b7983bac47 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = snapd
pkgdesc = Service and tools for management of snap packages.
pkgver = 2.45
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/snapcore/snapd
install = snapd.install
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index b53493392fc9..464e48f410d9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -9,7 +9,7 @@ depends=('squashfs-tools' 'libseccomp' 'libsystemd' 'apparmor')
optdepends=('bash-completion: bash completion support'
'xdg-desktop-portal: desktop integration')
pkgver=2.45
-pkgrel=2
+pkgrel=3
arch=('x86_64' 'i686' 'armv7h' 'aarch64')
url="https://github.com/snapcore/snapd"
license=('GPL3')
@@ -106,7 +106,7 @@ check() {
# make sure the binaries that need to be built statically really are
for binary in snap-exec snap-update-ns snapctl; do
- ldd "$srcdir/go/bin/$binary" 2>&1 | grep 'not a dynamic executable'
+ LC_ALL=C ldd "$srcdir/go/bin/$binary" 2>&1 | grep -q 'not a dynamic executable'
done
}