summaryrefslogtreecommitdiff
path: root/usr/src/tools/scripts/stdenv.sh
diff options
context:
space:
mode:
authorJerry Jelinek <jerry.jelinek@joyent.com>2020-01-27 12:32:37 +0000
committerJerry Jelinek <jerry.jelinek@joyent.com>2020-01-27 12:32:37 +0000
commit531f6e0494c75ea1e5b1f86f5dc336587440f0c5 (patch)
tree8ceac8e1d0175cf4aeaed71ff9d18a028e921de8 /usr/src/tools/scripts/stdenv.sh
parent3e1df384f9e21a6998ea827eee151e8953bb3147 (diff)
parent5ca82e6914c4162ba9b7028b19c9d77d3eadaf17 (diff)
downloadillumos-joyent-531f6e0494c75ea1e5b1f86f5dc336587440f0c5.tar.gz
[illumos-gate merge]
commit 5ca82e6914c4162ba9b7028b19c9d77d3eadaf17 11224 nightly and bldenv should be usable directly commit e90dc2b3580db8c2b04f138bba39aef292972dd2 12248 libdscp no longer needs to link with libnsl commit c60a820f97f4b84a182cb6e21fe8a25ff0ad3c4f 12239 chk4ubin: smatch errors commit 12661a24a0babe84d0a1b8d1fe46fb61dcc5011e 12238 stabs: smatch errors commit d851c23803d14c57f342f6cca648ec3bfb5ea9d1 12246 pci_get_irq_routing_table() leaks under UEFI commit 54cceed6fe59abfe2b58b5b1ef5bb12e652048fa 12144 Convert Intro(7) to mandoc 12145 Convert cpr(7) to mandoc 12146 Convert ibmf(7) to mandoc 12147 Convert FSS(7) to mandoc commit 9f9c12cd25ff2bda305600e1620ad2eecad4ef19 12243 too many NFS threads actually hurts performance commit 17a06589f9735e8864d445426faac16505b5d072 12184 SPARC build fails due to missing 64-bit libdhcpagent commit 8c4f148689a42031a168cdc4c81062735db025e0 12193 zonestatd: Wrong indentation in zsd_usage_cache_update()
Diffstat (limited to 'usr/src/tools/scripts/stdenv.sh')
-rw-r--r--usr/src/tools/scripts/stdenv.sh48
1 files changed, 0 insertions, 48 deletions
diff --git a/usr/src/tools/scripts/stdenv.sh b/usr/src/tools/scripts/stdenv.sh
deleted file mode 100644
index 50f4c4a5cc..0000000000
--- a/usr/src/tools/scripts/stdenv.sh
+++ /dev/null
@@ -1,48 +0,0 @@
-#
-# CDDL HEADER START
-#
-# The contents of this file are subject to the terms of the
-# Common Development and Distribution License (the "License").
-# You may not use this file except in compliance with the License.
-#
-# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
-# or http://www.opensolaris.org/os/licensing.
-# See the License for the specific language governing permissions
-# and limitations under the License.
-#
-# When distributing Covered Code, include this CDDL HEADER in each
-# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
-# If applicable, add the following below this CDDL HEADER, with the
-# fields enclosed by brackets "[]" replaced with your own identifying
-# information: Portions Copyright [yyyy] [name of copyright owner]
-#
-# CDDL HEADER END
-#
-
-#
-# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
-# Use is subject to license terms.
-#
-
-#
-# Shell script fragment to set standard build environment variables,
-# for use by bldenv(1) and nightly(1). Can be overridden by the
-# user's environment file. Because bldenv and nightly are both ksh
-# scripts, we can use ksh syntax here.
-#
-
-#
-# OPEN_SRCDIR is where we copy the open tree to so that we can be sure
-# we don't have a hidden dependency on closed code. The name ends in
-# "DIR" to avoid confusion with the flags related to open source
-# builds.
-#
-[ -n "$OPEN_SRCDIR" ] || export OPEN_SRCDIR="$CODEMGR_WS/open_src"
-
-#
-# Flag to enable creation of per-build-type proto areas. If "yes",
-# more proto areas are created, which speeds up incremental builds but
-# increases storage consumption. Will be forced to "yes" for
-# OpenSolaris deliveries.
-#
-[ -n "$MULTI_PROTO" ] || export MULTI_PROTO=no