blob: 4ce891fb37bd1932132d340469c3d3cc2fab1527 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
$NetBSD: patch-aa,v 1.1.1.1 2005/01/16 17:58:02 cube Exp $
--- configure.orig 2004-03-17 14:27:24.000000000 +0100
+++ configure
@@ -65,6 +65,8 @@ done
### Check that we can install the program.
+# I'm telling you to use $python, _not_ to be "smart".
+if false; then
if test -z "$python"; then
for cmd in python2.2 python2 python; do
if which $cmd > /dev/null 2>&1; then
@@ -100,6 +102,7 @@ EOF
fi
python=`which $python`
+fi
$python setup.py check || exit 1
|