Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | # |
michael@0 | 2 | # This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 5 | |
michael@0 | 6 | # |
michael@0 | 7 | # functions.mk |
michael@0 | 8 | # |
michael@0 | 9 | # Defines functions that are needed by various Makefiles throughout the build |
michael@0 | 10 | # system, which are needed before config.mk can be included. |
michael@0 | 11 | # |
michael@0 | 12 | |
michael@0 | 13 | # Define an include-at-most-once flag |
michael@0 | 14 | ifdef INCLUDED_FUNCTIONS_MK |
michael@0 | 15 | $(error Do not include functions.mk twice!) |
michael@0 | 16 | endif |
michael@0 | 17 | INCLUDED_FUNCTIONS_MK = 1 |
michael@0 | 18 | |
michael@0 | 19 | core_abspath = $(error core_abspath is unsupported, use $$(abspath) instead) |
michael@0 | 20 | core_realpath = $(error core_realpath is unsupported) |
michael@0 | 21 | |
michael@0 | 22 | core_winabspath = $(error core_winabspath is unsupported) |
michael@0 | 23 | |
michael@0 | 24 | # Run a named Python build action. The first argument is the name of the build |
michael@0 | 25 | # action. The second argument are the arguments to pass to the action (space |
michael@0 | 26 | # delimited arguments). e.g. |
michael@0 | 27 | # |
michael@0 | 28 | # libs:: |
michael@0 | 29 | # $(call py_action,purge_manifests,_build_manifests/purge/foo.manifest) |
michael@0 | 30 | ifdef .PYMAKE |
michael@0 | 31 | py_action = %mozbuild.action.$(1) main $(2) |
michael@0 | 32 | else |
michael@0 | 33 | py_action = $(PYTHON) -m mozbuild.action.$(1) $(2) |
michael@0 | 34 | endif |