diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-02-18 18:37:13 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-02-18 18:41:02 -0600 |
commit | 4d0a05e93902f9bb14418cc36e046131580b46d0 (patch) | |
tree | 905714bd702ff6386473536bcbe4279cb672c042 /solenv/bin | |
parent | c08308508aec99652256be333990ad9cd4e62dba (diff) |
build_env is obsolete now
Diffstat (limited to 'solenv/bin')
-rwxr-xr-x | solenv/bin/lo_find_src_root | 23 | ||||
-rwxr-xr-x | solenv/bin/lo_proxy_start | 31 |
2 files changed, 0 insertions, 54 deletions
diff --git a/solenv/bin/lo_find_src_root b/solenv/bin/lo_find_src_root deleted file mode 100755 index a91c84759822..000000000000 --- a/solenv/bin/lo_find_src_root +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env bash -# -# (c) 2011 Norbert Thiebaud. License : GPLv3 -# -# try to locate the SRC_ROOT based on the working directory -# we search for first Repository.mk -# in the current directoyr or its parent, all teh way to / -# Ths is a heuristic. it works 'most of the times -# but it could give false positive if you try hard enough -# - -current=$(pwd) - -while [ "${current}" != "/" ] ; do - if [ -f ${current}/.src_root ] ; then - echo "${current}" - exit 0; - fi - current=$(dirname "${current}") -done - -echo "Error cannot determine SRC_ROOT" 1>&2 -exit 1; diff --git a/solenv/bin/lo_proxy_start b/solenv/bin/lo_proxy_start deleted file mode 100755 index 8aabf2838acd..000000000000 --- a/solenv/bin/lo_proxy_start +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/env bash - -bin_dir=$(dirname $0) -action=$(basename $0) - -if [ "$action" = "lo_proxy_start" ] ; then - action=$1 - shift -fi - -if [ -z "$SRC_ROOT" ] ; then - SRC_ROOT=$($bin_dir/lo_find_src_root) || exit 1 -fi -if [ -z "$SOLARINC" ] ; then - if [ -e "$SRC_ROOT/config_host.mk" ] ; then - . "$SRC_ROOT/config_host.mk" - fi - if [ -e "$SRC_ROOT/Env.Host.sh" ] ; then - . "$SRC_ROOT/Env.Host.sh" - fi -fi - -if [ -e $SRC_ROOT/solenv/bin/$action.pl ] ; then - $SRC_ROOT/solenv/bin/$action.pl "$@" -elif [ -e $SRC_ROOT/solenv/bin/$action.sh ] ; then - $SRC_ROOT/solenv/bin/$action.sh "$@" -else - echo "$action.[pl|sh] not found" 2>&1 - exit 1 -fi - |