#!/bin/sh if [ -z "${ANDROID_BUILD_TOP}" ]; then echo 'ANDROID_BUILD_TOP not set. Have you run lunch?' exit 1 fi 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/sediff.py "$@" else echo "sediff is only supported on linux" exit 1 fi