diff options
author | Matthias Maennich <maennich@google.com> | 2019-08-16 10:55:49 +0100 |
---|---|---|
committer | Matthias Maennich <maennich@google.com> | 2019-08-16 10:55:49 +0100 |
commit | fbe5364ae10fb4fa6f4a17267a95cc57f6d5eceb (patch) | |
tree | aa80089ff9a2950ecf8dba53e2a5ff2763d3d6a3 /build_abi.sh | |
parent | ee7ef66e216041fa6d7e2f22ba8e8871a60d4f13 (diff) |
envsetup: move envsetup.sh to _setup_env.sh and deprecate envsetup.sh
envsetup.sh is an implementation detail of build.sh and friends and
should therefore not be sourced directly. Hence move its functionality
and just leave a warning in the original envsetup.sh along with some
documentation.
Change-Id: Ib0cfc56c7bbe4f2ce9d4cd01ea251e6982822c47
Signed-off-by: Matthias Maennich <maennich@google.com>
Diffstat (limited to 'build_abi.sh')
-rwxr-xr-x | build_abi.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/build_abi.sh b/build_abi.sh index b2f9170..b5c7566 100755 --- a/build_abi.sh +++ b/build_abi.sh @@ -28,8 +28,7 @@ export ROOT_DIR=$(readlink -f $(dirname $0)/..) set -e set -a -source "${ROOT_DIR}/build/envsetup.sh" -export ENVSETUP_SH_INCLUDED=1 +source "${ROOT_DIR}/build/_setup_env.sh" # inject CONFIG_DEBUG_INFO=y export POST_DEFCONFIG_CMDS="${POST_DEFCONFIG_CMDS} : && update_config_for_abi_dump" |