blob: 74f87ec711ffc87ac8b06784502a1540a0dd17ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
$NetBSD: patch-aa,v 1.2 2007/02/07 22:30:11 drochner Exp $
--- configure.orig 2007-01-15 16:46:04.000000000 +0100
+++ configure
@@ -21991,7 +21991,7 @@ echo $ECHO_N "checking whether to build
{ echo "$as_me:$LINENO: result: $with_python" >&5
echo "${ECHO_T}$with_python" >&6; }
- if test "X$with_python" == Xyes; then
+ if test "X$with_python" = Xyes; then
if test -z "$PYTHON"; then
# Extract the first word of "python", so it can be a program name with args.
set dummy python; ac_word=$2
@@ -22274,7 +22274,7 @@ rm -f conftest.err conftest.$ac_ext
CPPFLAGS="$save_CPPFLAGS"
- if test "X$with_python" == Xyes; then
+ if test "X$with_python" = Xyes; then
if test `uname` = Darwin; then
PYTHON_LDFLAGS="-Wl,-F. -Wl,-F. -bundle"
if $PYTHON -c 'import sys, string; sys.exit(string.find(sys.prefix,"Framework")+1)'; then
@@ -22330,7 +22330,7 @@ echo "${ECHO_T}no" >&6; }
fi
- if test "X$with_python" == Xyes; then
+ if test "X$with_python" = Xyes; then
# Extract the first word of "swig", so it can be a program name with args.
set dummy swig; ac_word=$2
|