summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authortron <tron>2006-10-20 12:45:13 +0000
committertron <tron>2006-10-20 12:45:13 +0000
commitc3dab3abfae38cd314836bc77d29fdc89ba7a104 (patch)
treecb0611bd2224e3f4556da978f5b321bc064f8a1c /mail
parentcfbb440c724704f9271d9b8936b39e1687d29cd1 (diff)
downloadpkgsrc-c3dab3abfae38cd314836bc77d29fdc89ba7a104.tar.gz
Fix "if [ ... == ...]" in a build script.
Diffstat (limited to 'mail')
-rw-r--r--mail/thunderbird/distinfo3
-rw-r--r--mail/thunderbird/patches/patch-as13
2 files changed, 15 insertions, 1 deletions
diff --git a/mail/thunderbird/distinfo b/mail/thunderbird/distinfo
index 86fffa76b85..ed1a99ef2fd 100644
--- a/mail/thunderbird/distinfo
+++ b/mail/thunderbird/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.28 2006/10/19 10:26:14 markd Exp $
+$NetBSD: distinfo,v 1.29 2006/10/20 12:45:13 tron Exp $
SHA1 (thunderbird-1.5.0.7-source.tar.bz2) = 9e5acff9bd098979dd798c0111805dc8d67479ad
RMD160 (thunderbird-1.5.0.7-source.tar.bz2) = b8948723e4a96e22409e6a2cb3cd1b6512bef189
@@ -20,6 +20,7 @@ SHA1 (patch-ao) = 4162763cc7af61deb1795f85fdbd96e3ef930d4d
SHA1 (patch-ap) = b2f630863e7b1bc3c0e7139d2b4aca3b80da04de
SHA1 (patch-aq) = e8389d53e0d490b3cc1078f646749abfe54225ff
SHA1 (patch-ar) = ce81dd6b747ba882434cb23343c5e89aac70ea81
+SHA1 (patch-as) = 56effdf9aa488fa2b3c8abcb4b7273841a4b59c1
SHA1 (patch-aw) = 0df1163297eb1ea48ae8b98d146f715462c0a2e7
SHA1 (patch-ax) = 00d60664a6be38db0d5b2464064230c62b153ca6
SHA1 (patch-ba) = 5e64f23ec426f9baef29f397084dba7158279071
diff --git a/mail/thunderbird/patches/patch-as b/mail/thunderbird/patches/patch-as
new file mode 100644
index 00000000000..992a23f2a5f
--- /dev/null
+++ b/mail/thunderbird/patches/patch-as
@@ -0,0 +1,13 @@
+$NetBSD: patch-as,v 1.3 2006/10/20 12:45:13 tron Exp $
+
+--- build/autoconf/mozconfig2configure.orig 2006-02-22 16:41:28.000000000 +0000
++++ build/autoconf/mozconfig2configure 2006-10-20 12:26:11.000000000 +0100
+@@ -79,7 +79,7 @@
+ ac_add_app_options() {
+ APP=$1
+ shift;
+- if [ "$APP" == "$MOZ_BUILD_APP" ]; then
++ if [ "$APP" = "$MOZ_BUILD_APP" ]; then
+ ac_add_options "$*";
+ fi
+ }