blob: 65154e286f524a99cc8510ab62cee8c72b9817a4 [file] [log] [blame]
#!/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
python $ANDROID_BUILD_TOP/external/selinux/prebuilts/bin/sesearch.py "$@"
else
echo "sesearch is only supported on linux"
fi