summaryrefslogtreecommitdiff
path: root/www/firefox
diff options
context:
space:
mode:
authorseb <seb>2006-10-16 12:09:13 +0000
committerseb <seb>2006-10-16 12:09:13 +0000
commit9d802a01f6de405b0dee532edf28191e598d9452 (patch)
tree9263ab01c0d5abbedc5933f7e17adc15f201a6f9 /www/firefox
parent0ebbb82efec32d3a343952b8c8e7c9ffaa816f03 (diff)
downloadpkgsrc-9d802a01f6de405b0dee532edf28191e598d9452.tar.gz
Fixed "test ==".
Diffstat (limited to 'www/firefox')
-rw-r--r--www/firefox/distinfo3
-rw-r--r--www/firefox/patches/patch-ec13
2 files changed, 15 insertions, 1 deletions
diff --git a/www/firefox/distinfo b/www/firefox/distinfo
index 5c34339daae..dbaedc8bf11 100644
--- a/www/firefox/distinfo
+++ b/www/firefox/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.54 2006/09/15 13:53:08 ghen Exp $
+$NetBSD: distinfo,v 1.55 2006/10/16 12:09:13 seb Exp $
SHA1 (firefox-1.5.0.7-source.tar.bz2) = f10d57af87bddc1b929ec5321688ac0efa880960
RMD160 (firefox-1.5.0.7-source.tar.bz2) = 156a73842949d4fcd401dfaa54afc6cac3aa66c2
@@ -59,3 +59,4 @@ SHA1 (patch-du) = c6e66bb420ce9ea988f89b57d1c20a247704cfcf
SHA1 (patch-dv) = a380d261d4c2771a672d2b0f4f1f23821e3e5266
SHA1 (patch-ea) = 14e31d17c2493e468cd01f99abfc996853a11032
SHA1 (patch-eb) = dc9232b10075d17f7ed742e7be8ea036db2f0241
+SHA1 (patch-ec) = 925a6f76bbfa77661256d46b0d14e847c16a865f
diff --git a/www/firefox/patches/patch-ec b/www/firefox/patches/patch-ec
new file mode 100644
index 00000000000..21892ed10fd
--- /dev/null
+++ b/www/firefox/patches/patch-ec
@@ -0,0 +1,13 @@
+$NetBSD: patch-ec,v 1.1 2006/10/16 12:09:13 seb Exp $
+
+--- build/autoconf/mozconfig2configure.orig 2006-02-22 16:41:28.000000000 +0000
++++ build/autoconf/mozconfig2configure
+@@ -79,7 +79,7 @@ ac_add_options() {
+ ac_add_app_options() {
+ APP=$1
+ shift;
+- if [ "$APP" == "$MOZ_BUILD_APP" ]; then
++ if [ "$APP" = "$MOZ_BUILD_APP" ]; then
+ ac_add_options "$*";
+ fi
+ }