summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorAdrian Perez de Castro2023-11-09 22:56:15 +0200
committerAdrian Perez de Castro2023-11-09 22:56:15 +0200
commit8c20d1136369dd8075e5770ea6da66aca92c3885 (patch)
tree0a761fe8842d4e9a182c54d2e83a6816e79567f9 /PKGBUILD
parent13d1bf7a62833acb3db00d7f4fe67f0b20a99159 (diff)
downloadaur-8c20d1136369dd8075e5770ea6da66aca92c3885.tar.gz
Fix patch logic for static builds
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 6507cd24fb22..2886cb5ac0f3 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,7 +7,7 @@ _mercury_dependency='mercury>=14.04'
pkgname=bower-mail
pkgver=1.0
-pkgrel=2
+pkgrel=3
pkgdesc="A curses terminal client for the Notmuch email system"
arch=('any')
url="https://github.com/wangp/bower"
@@ -34,7 +34,7 @@ prepare () {
cd "$srcdir/bower-$pkgver"
patch -p1 -i "$srcdir/workaround-mercury-bug567.patch"
- if $_static_build ; then
+ if ! $_static_build ; then
patch -i "$srcdir/arch.patch" src/Mercury.options
fi
}