You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
326 B
10 lines
326 B
#!/bin/sh
|
|
|
|
unamestr=`uname`
|
|
if [ "$unamestr" = "Linux" -o "$unamestr" = "linux" ]; then
|
|
export PYTHONPATH=$ANDROID_BUILD_TOP/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages:$PYTHONPATH
|
|
python $ANDROID_BUILD_TOP/external/selinux/prebuilts/bin/sesearch.py "$@"
|
|
else
|
|
echo "sesearch is only supported on linux"
|
|
fi
|