security/nss/coreconf/tree.mk

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 #
     2 # This Source Code Form is subject to the terms of the Mozilla Public
     3 # License, v. 2.0. If a copy of the MPL was not distributed with this
     4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
     6 #######################################################################
     7 # Master "Core Components" file system "release" prefixes             #
     8 #######################################################################
    10 # Windows platforms override this.  See WIN32.mk.
    11 ifndef RELEASE_TREE
    12     ifdef BUILD_SHIP
    13 	ifdef USE_SHIPS 
    14 	    RELEASE_TREE = $(BUILD_SHIP)
    15 	else
    16 	    RELEASE_TREE = /share/builds/components
    17 	endif
    18     else
    19 	RELEASE_TREE = /share/builds/components
    20     endif
    21 endif
    23 #
    24 # NOTE:  export control policy enforced for XP and MD files
    25 #        released to the binary release tree
    26 #
    28 ifeq ($(POLICY), domestic)
    29     RELEASE_XP_DIR = domestic
    30     RELEASE_MD_DIR = domestic/$(PLATFORM)
    31 else
    32     ifeq ($(POLICY), export)
    33 	RELEASE_XP_DIR = export
    34 	RELEASE_MD_DIR = export/$(PLATFORM)
    35     else
    36 	ifeq ($(POLICY), france)
    37 	    RELEASE_XP_DIR = france
    38 	    RELEASE_MD_DIR = france/$(PLATFORM)
    39 	else
    40 	    RELEASE_XP_DIR = 
    41 	    RELEASE_MD_DIR = $(PLATFORM)
    42 	endif
    43     endif
    44 endif
    47 REPORTER_TREE = $(subst \,\\,$(RELEASE_TREE))
    49 IMPORT_XP_DIR = 
    50 IMPORT_MD_DIR = $(PLATFORM)
    52 MK_TREE = included

mercurial