mirror of
https://github.com/mozilla-firefox/firefox
synced 2026-08-11 12:19:28 +00:00
Removes `hg-bundle` and the variables that exist only to serve it. The recipe runs `hg bundle` against `$(topsrcdir)`, which requires the source tree to be a Mercurial working copy. No taskcluster kind or mozharness script invokes it, and the only references are forwarding targets in `browser/build.mk` and `comm-central`'s `mail/build.mk`. Without `UPLOAD_HG_BUNDLE` the bundle never reaches `SOURCE_UPLOAD_FILES`, which nothing reads either, and nothing sets `HG_BUNDLE_REVISION`. Source packaging is `./mach source-package`, which produces a `tar.xz`. `comm-central` forwards `hg-bundle` from `mail/build.mk` and will need two lines removed. Differential Revision: https://phabricator.services.mozilla.com/D317225
38 lines
811 B
Makefile
38 lines
811 B
Makefile
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
package:
|
|
@$(MAKE) -C browser/installer
|
|
|
|
package-compare:
|
|
@$(MAKE) -C browser/installer package-compare
|
|
|
|
stage-package:
|
|
@$(MAKE) -C browser/installer stage-package
|
|
|
|
install::
|
|
@$(MAKE) -C browser/installer install
|
|
|
|
upload::
|
|
@$(MAKE) -C browser/installer upload
|
|
|
|
wget-en-US:
|
|
@$(MAKE) -C browser/locales $@
|
|
|
|
merge-% installers-% langpack-% chrome-%:
|
|
$(MAKE) -C browser/locales $@
|
|
|
|
ifdef ENABLE_TESTS
|
|
# Implemented in testing/testsuite-targets.mk
|
|
|
|
mochitest-browser-chrome:
|
|
$(RUN_MOCHITEST) --flavor=browser
|
|
$(CHECK_TEST_ERROR)
|
|
|
|
mochitest:: mochitest-browser-chrome
|
|
|
|
.PHONY: mochitest-browser-chrome
|
|
|
|
endif
|