diff options
author | tron <tron@pkgsrc.org> | 2006-10-20 12:45:13 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2006-10-20 12:45:13 +0000 |
commit | 40b4c54746c980121b8fec400fc885aaeb853b75 (patch) | |
tree | cb0611bd2224e3f4556da978f5b321bc064f8a1c /mail | |
parent | eddbb357dc7ba22d1ce6a0e23b41d553b0be0102 (diff) | |
download | pkgsrc-40b4c54746c980121b8fec400fc885aaeb853b75.tar.gz |
Fix "if [ ... == ...]" in a build script.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/thunderbird/distinfo | 3 | ||||
-rw-r--r-- | mail/thunderbird/patches/patch-as | 13 |
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 + } |