summaryrefslogtreecommitdiff
path: root/community/mysql-workbench/python27.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/mysql-workbench/python27.patch')
-rw-r--r--community/mysql-workbench/python27.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/community/mysql-workbench/python27.patch b/community/mysql-workbench/python27.patch
deleted file mode 100644
index 4f70afe57..000000000
--- a/community/mysql-workbench/python27.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff -Nur mysql-workbench-gpl-5.2.36-src.old/configure.in mysql-workbench-gpl-5.2.36-src/configure.in
---- mysql-workbench-gpl-5.2.36-src.old/configure.in 2011-12-05 15:04:56.894410445 +0000
-+++ mysql-workbench-gpl-5.2.36-src/configure.in 2011-12-05 15:05:45.818268997 +0000
-@@ -245,13 +245,13 @@
- AC_CHECK_PROG(PYTHON27, python2.7, [yes])
- # Python headers
- AC_MSG_CHECKING(for Python libraries)
--PYTHON_LIBS=[$(python -c "from distutils import sysconfig
-+PYTHON_LIBS=[$(python2 -c "from distutils import sysconfig
- import os
- cfg=sysconfig.get_config_vars()
- lib = os.path.join(cfg['LIBDIR'], cfg['LDLIBRARY'])
- if os.path.exists(lib):
- print \"-L\" + cfg['LIBDIR'] + \" -l\" + cfg['LDLIBRARY'].lstrip(\"lib\").rstrip(\".so\")")]
--PYTHON_CFLAGS=[$(python -c "from distutils import sysconfig
-+PYTHON_CFLAGS=[$(python2 -c "from distutils import sysconfig
- print sysconfig.get_python_inc()")]
- PYTHON_CFLAGS="-I$PYTHON_CFLAGS"
- if test "$PYTHON_LIBS" = ""; then