illumos.sh (a190135a5de9f6c93d19ec7b3ee608084be06b1a) illumos.sh (86d4171132ce4f4c1345b7ce0d5048577e1f3976)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 260 unchanged lines hidden (view full) ---

269# PKGARCHIVE determines where the repository will be created.
270#
271# PKGPUBLISHER_REDIST controls the publisher setting for the repository.
272#
273export PKGARCHIVE="${CODEMGR_WS}/packages/${MACH}/nightly"
274# export PKGPUBLISHER_REDIST='on-redist'
275
276# Package manifest format version.
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 260 unchanged lines hidden (view full) ---

269# PKGARCHIVE determines where the repository will be created.
270#
271# PKGPUBLISHER_REDIST controls the publisher setting for the repository.
272#
273export PKGARCHIVE="${CODEMGR_WS}/packages/${MACH}/nightly"
274# export PKGPUBLISHER_REDIST='on-redist'
275
276# Package manifest format version.
277export PKGFMT_OUTPUT='v1'
277export PKGFMT_OUTPUT='v2'
278
279# we want make to do as much as it can, just in case there's more than
280# one problem.
281export MAKEFLAGS='k'
282
283# Magic variables to prevent the devpro compilers/teamware from checking
284# for updates or sending mail back to devpro on every use.
285export SUNW_NO_UPDATE_NOTIFY='1'

--- 9 unchanged lines hidden (view full) ---

295#export ONBLD_TOOLS='/opt/onbld'
296export SPRO_ROOT='/opt/SUNWspro'
297export SPRO_VROOT="$SPRO_ROOT"
298
299# Set this flag to 'n' to disable the use of 'checkpaths'. The default,
300# if the 'N' option is not specified, is to run this test.
301#CHECK_PATHS='y'
302
278
279# we want make to do as much as it can, just in case there's more than
280# one problem.
281export MAKEFLAGS='k'
282
283# Magic variables to prevent the devpro compilers/teamware from checking
284# for updates or sending mail back to devpro on every use.
285export SUNW_NO_UPDATE_NOTIFY='1'

--- 9 unchanged lines hidden (view full) ---

295#export ONBLD_TOOLS='/opt/onbld'
296export SPRO_ROOT='/opt/SUNWspro'
297export SPRO_VROOT="$SPRO_ROOT"
298
299# Set this flag to 'n' to disable the use of 'checkpaths'. The default,
300# if the 'N' option is not specified, is to run this test.
301#CHECK_PATHS='y'
302
303if [[ "$ENABLE_SMATCH" = "1" ]]; then
303if [[ "$ENABLE_SMATCH" == "1" ]]; then
304 SMATCHBIN=$CODEMGR_WS/usr/src/tools/proto/root_$MACH-nd/opt/onbld/bin/$MACH/smatch
305 export SHADOW_CCS="$SHADOW_CCS smatch,$SMATCHBIN,smatch"
306fi
304 SMATCHBIN=$CODEMGR_WS/usr/src/tools/proto/root_$MACH-nd/opt/onbld/bin/$MACH/smatch
305 export SHADOW_CCS="$SHADOW_CCS smatch,$SMATCHBIN,smatch"
306fi