https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 9e52386c577833470c33525a6804de01f0a41da2 authored by ffxbld on 07 April 2016, 23:49:03 UTC
Added FENNEC_45_0_2_RELEASE FENNEC_45_0_2_BUILD1 tag(s) for changeset de8c6696c6f6. DONTBUILD CLOSED TREE a=release
Tip revision: 9e52386
build.mk
# 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/.

ifneq (extensions,$(MOZ_BUILD_APP))
$(error This file shouldn't be included without --enable-application=extensions)
endif

ifndef MOZ_EXTENSIONS
$(error You forgot to set --enable-extensions)
endif

TIERS += app
tier_app_dirs += extensions

installer:
	@echo Check each extension for an installer.
	@exit 1
back to top