summaryrefslogtreecommitdiff
path: root/libre/icedove
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2018-01-31 20:10:54 +0100
committerAndreas Grapentin <andreas@grapentin.org>2018-01-31 21:30:16 +0100
commit54b541d784a457e28c496e4ab9c8963d2b94eed6 (patch)
treeff90c908bb38e83a590c1147921bf4e6e45e13bf /libre/icedove
parent431a78910174d31678e7553ec15bff750d42d96b (diff)
libre/icedove: fixed binary wrapper
Diffstat (limited to 'libre/icedove')
-rw-r--r--libre/icedove/PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/libre/icedove/PKGBUILD b/libre/icedove/PKGBUILD
index b17946f06..e2eeb878c 100644
--- a/libre/icedove/PKGBUILD
+++ b/libre/icedove/PKGBUILD
@@ -251,11 +251,11 @@ END
# Install a wrapper to avoid confusion about binary path
install -Dm755 /dev/stdin "$pkgdir/usr/bin/$pkgname" <<END
#!/bin/sh
-exec /usr/lib/$pkgname/thunderbird "\$@"
+exec /usr/lib/$pkgname/$pkgname "\$@"
END
# Replace duplicate binary with wrapper
# https://bugzilla.mozilla.org/show_bug.cgi?id=658850
ln -srf "$pkgdir/usr/bin/$pkgname" \
- "$pkgdir/usr/lib/$pkgname/thunderbird-bin"
+ "$pkgdir/usr/lib/$pkgname/$pkgname-bin"
}