From 99ebd42b488bc6b805ac3c83bdd57996965da629 Mon Sep 17 00:00:00 2001 From: nodiscc Date: Wed, 5 Apr 2017 01:18:40 +0200 Subject: [PATCH] Makefile: downloadffprefs: add Firefox source reference files from #208 --- Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 364a8e36..4340d8de 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,17 @@ downloadffprefs: https://hg.mozilla.org/mozilla-central/raw-file/$$SOURCEVERSION/modules/libpref/init/all.js \ https://hg.mozilla.org/mozilla-central/raw-file/$$SOURCEVERSION/testing/profiles/prefs_general.js \ https://hg.mozilla.org/mozilla-central/raw-file/$$SOURCEVERSION/layout/tools/reftest/reftest-preferences.js \ - https://hg.mozilla.org/mozilla-central/raw-file/$$SOURCEVERSION/js/src/tests/user.js"; \ + https://hg.mozilla.org/mozilla-central/raw-file/$$SOURCEVERSION/js/src/tests/user.js \ + https://hg.mozilla.org/mozilla-central/raw-file/$$SOURCEVERSION/browser/app/profile/firefox.js \ + https://hg.mozilla.org/mozilla-central/raw-file/tip/devtools/client/preferences/debugger.js \ + https://hg.mozilla.org/mozilla-central/raw-file/tip/devtools/client/preferences/devtools.js \ + https://hg.mozilla.org/mozilla-central/raw-file/tip/browser/branding/unofficial/pref/firefox-branding.js \ + https://hg.mozilla.org/mozilla-central/raw-file/tip/browser/branding/official/pref/firefox-branding.js \ + https://hg.mozilla.org/mozilla-central/raw-file/tip/browser/branding/nightly/pref/firefox-branding.js \ + https://hg.mozilla.org/mozilla-central/raw-file/tip/browser/branding/aurora/pref/firefox-branding.js \ + https://hg.mozilla.org/mozilla-central/raw-file/tip/browser/locales/en-US/firefox-l10n.js \ + https://hg.mozilla.org/mozilla-central/raw-file/tip/devtools/client/webide/webide-prefs.js \ + https://hg.mozilla.org/mozilla-central/raw-file/tip/browser/app/profile/channel-prefs.js"; \ for SOURCEFILE in $$FIREFOX_SOURCE_PREFS; do wget -nv "$$SOURCEFILE" -O - ; done | egrep "(^pref|^user_pref)" | sort --unique >| sourceprefs.js ######################