summaryrefslogtreecommitdiff
path: root/test/rules-test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/rules-test.sh')
-rwxr-xr-xtest/rules-test.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/rules-test.sh b/test/rules-test.sh
index 47d42cb3fa..219575360e 100755
--- a/test/rules-test.sh
+++ b/test/rules-test.sh
@@ -20,9 +20,9 @@
[ -n "$srcdir" ] || srcdir=`dirname $0`/..
# skip if we don't have python
-type python >/dev/null 2>&1 || {
- echo "$0: No python installed, skipping udev rule syntax check"
+type ${PYTHON:-python} >/dev/null 2>&1 || {
+ echo "$0: No $PYTHON installed, skipping udev rule syntax check"
exit 0
}
-$srcdir/test/rule-syntax-check.py `find $srcdir/rules -name '*.rules'`
+$PYTHON $srcdir/test/rule-syntax-check.py `find $srcdir/rules -name '*.rules'`