mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-20 02:40:03 +02:00
36 lines
883 B
Bash
Executable File
36 lines
883 B
Bash
Executable File
#echo $#
|
|
#if [ $# = 0 ]; then
|
|
# f=$0
|
|
#else
|
|
# f=$1
|
|
#fi
|
|
#echo $f
|
|
if [ "x${BASH_ARGV[0]}" = "x" ]; then
|
|
#if [ "x$f" = "x" ]; then
|
|
if [ ! -f this_build_bin_path.sh ]; then
|
|
f=$0
|
|
echo "aaaa"
|
|
#thispath=$(dirname ${BASH_ARGV[0]})
|
|
thispath=$(dirname $f)
|
|
p=$(cd ${thispath};pwd);
|
|
THIS_PATH="$p/build/bin/"
|
|
# echo "ERROR: must cd where/this/package/is before calling this_path.sh"
|
|
# echo "Try sourcing it"
|
|
else
|
|
echo "bbb"
|
|
THIS_PATH="$PWD/build/bin/";
|
|
fi
|
|
else
|
|
thispath=$(dirname ${BASH_ARGV[0]})
|
|
p=$(cd ${thispath};pwd);
|
|
THIS_PATH="$p/build/bin/"
|
|
echo "ccc"
|
|
fi
|
|
|
|
echo "this_path="$THIS_PATH
|
|
export PATH=$THIS_PATH:$PATH
|
|
export LD_LIBRARY_PATH=$THIS_PATH:$LD_LIBRARY_PATH
|
|
|
|
echo "path="$PATH
|
|
echo "ld_library_path="$LD_LIBRARY_PATH
|