diff options
author | seb <seb@pkgsrc.org> | 2006-10-16 12:09:13 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2006-10-16 12:09:13 +0000 |
commit | 3ee8027542b0b26d21a832aa714ca7f6ea07e6b9 (patch) | |
tree | 9263ab01c0d5abbedc5933f7e17adc15f201a6f9 /www/firefox | |
parent | 8d39dc76601430bfec978307c46c1d9309285e9a (diff) | |
download | pkgsrc-3ee8027542b0b26d21a832aa714ca7f6ea07e6b9.tar.gz |
Fixed "test ==".
Diffstat (limited to 'www/firefox')
-rw-r--r-- | www/firefox/distinfo | 3 | ||||
-rw-r--r-- | www/firefox/patches/patch-ec | 13 |
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 + } |