Package: gamin / 0.1.10-6

01_python_detection.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=616738

If I say $PYTHON is foo, just use it, kthxbye.

--- a/configure.in
+++ b/configure.in
@@ -467,7 +467,7 @@
 	    echo Found python in $with_python
 	    PYTHON="$with_python"
 	else
-	    if test -x "$PYTHON"
+	    if test -n "$PYTHON"
 	    then
 	        echo Found python in environment PYTHON=$PYTHON
 		with_python=`$PYTHON -c "import sys; print sys.exec_prefix"`