如何在shell脚本中测试我是否在Scratchbox2中运行

时间:2012-12-26 07:05:07

标签: bash cross-compiling embedded-linux scratchbox

在旧版Scratchbox中,可以执行以下操作:

if [ -f /targets/links/scratchbox.config ]; then 
    echo "here goes my sbox-dependent stuff" 
fi

Scratchbox2怎么样,有没有办法找到这个?

1 个答案:

答案 0 :(得分:0)

如何测试环境变量' LD_PRELOAD'

if [[ $LD_PRELOAD =~ "sb2" ]]; then 
    true # is running under sb2
fi