From ace18cd7d8c5129be6e74877532772126d5ca727 Mon Sep 17 00:00:00 2001 From: Jonathan Griffin Date: Mon, 26 Oct 2009 09:57:33 -0700 Subject: [PATCH] Bug 523208. Fix string to refer to --setpref instead of --extra-pref. --- build/automation.py.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/automation.py.in b/build/automation.py.in index 2595faf1abc..fbba820de8c 100644 --- a/build/automation.py.in +++ b/build/automation.py.in @@ -335,7 +335,7 @@ user_pref("camino.use_system_proxy_settings", false); // Camino-only, harmless t for v in extraPrefs: thispref = v.split("=") if len(thispref) < 2: - print "Error: syntax error in --extra-pref=" + v + print "Error: syntax error in --setpref=" + v sys.exit(1) part = 'user_pref("%s", %s);\n' % (thispref[0], thispref[1]) prefs.append(part)