summaryrefslogtreecommitdiff
path: root/community/mysql-workbench/python27.patch
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2012-01-09 13:47:51 +0000
committerParabola <dev@list.parabolagnulinux.org>2012-01-09 13:47:51 +0000
commit7a3611f5caa5e34c1f2b582640f97b733110ae63 (patch)
tree5b0baf1ad1b36444ffbf73707a377b15fc67692f /community/mysql-workbench/python27.patch
parent46783b68621b6ad45cdd9ed64cfa8cdcfbc6f318 (diff)
Mon Jan 9 13:47:49 UTC 2012
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