diff options
author | thierry <thierry@FreeBSD.org> | 2012-09-08 17:33:14 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2012-09-08 17:33:14 +0800 |
commit | e06c615512c9d154ded15d204d62d7e27e326359 (patch) | |
tree | 9cf928194b762e76d2c617a9eef5e5bdfe7be570 /science | |
parent | 2ac229c34f497aa5b586977671924647248733a2 (diff) | |
download | freebsd-ports-gnome-e06c615512c9d154ded15d204d62d7e27e326359.tar.gz freebsd-ports-gnome-e06c615512c9d154ded15d204d62d7e27e326359.tar.zst freebsd-ports-gnome-e06c615512c9d154ded15d204d62d7e27e326359.zip |
Fix on FreeBSD-7.x.
Reported by: pointyhat via beat
Diffstat (limited to 'science')
-rw-r--r-- | science/ncs/files/patch-configure | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/science/ncs/files/patch-configure b/science/ncs/files/patch-configure new file mode 100644 index 000000000000..c2eb025061eb --- /dev/null +++ b/science/ncs/files/patch-configure @@ -0,0 +1,29 @@ +--- configure.orig 2011-12-20 14:07:17.000000000 +0100 ++++ configure 2012-09-07 21:23:33.000000000 +0200 +@@ -20626,7 +20626,7 @@ + PYTHON_EXE=none + fi + +-if test "x${PYTHON_EXE}" == "xnone" ; then ++if test "x${PYTHON_EXE}" = "xnone" ; then + cs_python="/usr/bin/env python" + # Extract the first word of "python", so it can be a program name with args. + set dummy python; ac_word=$2 +@@ -20961,7 +20961,7 @@ + fi + + # Test for PyQt4 +-if test "x$have_gui" == "xyes" ; then ++if test "x$have_gui" = "xyes" ; then + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PyQt4 version >= 4.3" >&5 + $as_echo_n "checking for PyQt4 version >= 4.3... " >&6; } +@@ -20993,7 +20993,7 @@ + fi + + # Test for PyQt4 developper tools +-if test "x$have_gui" == "xyes" ; then ++if test "x$have_gui" = "xyes" ; then + + if test "x${PYQT4_EXE}" == "xnone" ; then + |