summaryrefslogtreecommitdiffstats
path: root/BaseTools/BinWrappers/PosixLike/Split
diff options
context:
space:
mode:
authorvanjeff <vanjeff>2013-09-25 03:27:00 +0000
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2013-09-25 03:27:00 +0000
commite45567f3c78f20a637dbe8f7c18b4be11af45585 (patch)
tree0a5eae88064d3af9b67ff20fc68a377be28e4928 /BaseTools/BinWrappers/PosixLike/Split
parent278dd382285fa87a30a695f4caed1cefbadcc49e (diff)
downloadedk2-e45567f3c78f20a637dbe8f7c18b4be11af45585.tar.gz
Delete old BaseTools, ShellPkg and ShellBinPkg from UDK2010.SR1 Branch.
git-svn-id: https://svn.code.sf.net/p/edk2/code/branches/UDK2010.SR1@14722 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'BaseTools/BinWrappers/PosixLike/Split')
-rwxr-xr-xBaseTools/BinWrappers/PosixLike/Split29
1 files changed, 0 insertions, 29 deletions
diff --git a/BaseTools/BinWrappers/PosixLike/Split b/BaseTools/BinWrappers/PosixLike/Split
deleted file mode 100755
index 4821d24fa7..0000000000
--- a/BaseTools/BinWrappers/PosixLike/Split
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/env bash
-#python `dirname $0`/RunToolFromSource.py `basename $0` $*
-#exec `dirname $0`/../../../../C/bin/`basename $0` $*
-
-TOOL_BASENAME=`basename $0`
-
-if [ -n "$WORKSPACE" -a -e $WORKSPACE/Conf/BaseToolsCBinaries ]
-then
- exec $WORKSPACE/Conf/BaseToolsCBinaries/$TOOL_BASENAME
-elif [ -n "$WORKSPACE" -a -e $EDK_TOOLS_PATH/Source/C ]
-then
- if [ ! -e $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME ]
- then
- echo BaseTools C Tool binary was not found \($TOOL_BASENAME\)
- echo You may need to run:
- echo " make -C $EDK_TOOLS_PATH/Source/C"
- else
- exec $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME $*
- fi
-elif [ -e `dirname $0`/../../Source/C/bin/$TOOL_BASENAME ]
-then
- exec `dirname $0`/../../Source/C/bin/$TOOL_BASENAME $*
-else
- echo Unable to find the real \'$TOOL_BASENAME\' to run
- echo This message was printed by
- echo " $0"
- exit -1
-fi
-