From b9e61d7d16f828275b54931db90833f040bf0d3d Mon Sep 17 00:00:00 2001 From: jljusten Date: Wed, 17 Oct 2007 02:08:31 +0000 Subject: Moving from $WORKSPACE/Tools/BuildEnv $WORKSPACE/BaseTools/BuildEnv. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4150 6f19259b-4bc3-4df7-8a09-765794883524 --- BaseTools/BuildEnv | 39 +++++++++++++++++++++++++++++++++++++++ Tools/BuildEnv | 39 --------------------------------------- 2 files changed, 39 insertions(+), 39 deletions(-) create mode 100644 BaseTools/BuildEnv delete mode 100644 Tools/BuildEnv diff --git a/BaseTools/BuildEnv b/BaseTools/BuildEnv new file mode 100644 index 0000000000..fcca6c9069 --- /dev/null +++ b/BaseTools/BuildEnv @@ -0,0 +1,39 @@ +# +# Copyright (c) 2006 - 2007, Intel Corporation +# All rights reserved. This program and the accompanying materials +# are licensed and made available under the terms and conditions of the BSD License +# which accompanies this distribution. The full text of the license may be found at +# http://opensource.org/licenses/bsd-license.php +# +# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, +# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. + +# Setup the environment for unix-like systems running a bash-like shell. +# This file must be "sourced" not merely executed. For example: ". edksetup.sh" + +if [ ! -e ./Tools/BaseTools/BuildEnv.py ] +then + echo Run this script from the base of your tree. For example: + echo " cd /Path/To/Edk/Root" + echo " . Tools/BuildEnv" + return +fi + +# +# First, we run a python tool that will ask the user to configure +# the environment in a (relatively) user friendly manner. +# +python ./Tools/BaseTools/BuildEnv.py $* + +# +# The python tool will write ./Conf/BuildEnv.sh to actually configure +# the environment. +# +if [ -e ./Conf/BuildEnv.sh ] +then + . ./Conf/BuildEnv.sh +else + echo There was a failure while trying to setup the environment! +fi + + diff --git a/Tools/BuildEnv b/Tools/BuildEnv deleted file mode 100644 index fcca6c9069..0000000000 --- a/Tools/BuildEnv +++ /dev/null @@ -1,39 +0,0 @@ -# -# Copyright (c) 2006 - 2007, Intel Corporation -# All rights reserved. This program and the accompanying materials -# are licensed and made available under the terms and conditions of the BSD License -# which accompanies this distribution. The full text of the license may be found at -# http://opensource.org/licenses/bsd-license.php -# -# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - -# Setup the environment for unix-like systems running a bash-like shell. -# This file must be "sourced" not merely executed. For example: ". edksetup.sh" - -if [ ! -e ./Tools/BaseTools/BuildEnv.py ] -then - echo Run this script from the base of your tree. For example: - echo " cd /Path/To/Edk/Root" - echo " . Tools/BuildEnv" - return -fi - -# -# First, we run a python tool that will ask the user to configure -# the environment in a (relatively) user friendly manner. -# -python ./Tools/BaseTools/BuildEnv.py $* - -# -# The python tool will write ./Conf/BuildEnv.sh to actually configure -# the environment. -# -if [ -e ./Conf/BuildEnv.sh ] -then - . ./Conf/BuildEnv.sh -else - echo There was a failure while trying to setup the environment! -fi - - -- cgit v1.2.3