diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2012-08-01 11:51:02 +0200 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-08-07 12:21:23 +0200 |
commit | 878a0c84727a3f709400a93289bef7025432a946 (patch) | |
tree | d005d8384da1480ce5dc6a8c9f339e01fadaf846 /meta-oe/recipes-devtools/python/python-pyqt-4.8.4/fix_the_QAssitant_ftbfs.diff | |
parent | 910feab3e7cae1a74562c930be032566824968eb (diff) | |
download | meta-openembedded-878a0c84727a3f709400a93289bef7025432a946.tar.gz |
python-pyqt: import from oe-classic
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/python/python-pyqt-4.8.4/fix_the_QAssitant_ftbfs.diff')
-rw-r--r-- | meta-oe/recipes-devtools/python/python-pyqt-4.8.4/fix_the_QAssitant_ftbfs.diff | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/python/python-pyqt-4.8.4/fix_the_QAssitant_ftbfs.diff b/meta-oe/recipes-devtools/python/python-pyqt-4.8.4/fix_the_QAssitant_ftbfs.diff new file mode 100644 index 0000000000..96e3062471 --- /dev/null +++ b/meta-oe/recipes-devtools/python/python-pyqt-4.8.4/fix_the_QAssitant_ftbfs.diff | |||
@@ -0,0 +1,29 @@ | |||
1 | From aa85ab2be6be7cb3c4df68139a8271fc4c8c11c8 Mon Sep 17 00:00:00 2001 | ||
2 | From: =?UTF-8?q?Picca=20Fr=C3=A9d=C3=A9ric-Emmanuel?= <picca@synchrotron-soleil.fr> | ||
3 | Date: Tue, 1 Mar 2011 21:49:23 +0100 | ||
4 | Subject: [PATCH] * fix the QAssitant ftbfs | ||
5 | |||
6 | --- | ||
7 | configure.py | 4 ++-- | ||
8 | 1 files changed, 2 insertions(+), 2 deletions(-) | ||
9 | |||
10 | diff --git a/configure.py b/configure.py | ||
11 | index 7ed9582..185ec9f 100644 | ||
12 | --- a/configure.py | ||
13 | +++ b/configure.py | ||
14 | @@ -354,10 +354,10 @@ class ConfigurePyQt4: | ||
15 | |||
16 | if opts.mwg_ssl_dir: | ||
17 | ass_lib_dirs = [os.path.join(opts.mwg_ssl_dir, "lib")] | ||
18 | - ass_libs = ["ssleay32", "libeay32"] | ||
19 | + ass_libs = ["ssleay32", "libeay32", "QtCore"] | ||
20 | else: | ||
21 | ass_lib_dirs = None | ||
22 | - ass_libs = None | ||
23 | + ass_libs = ["QtCore"] | ||
24 | |||
25 | # Note that the order in which we check is important for the | ||
26 | # consolidated module - a module's dependencies must be checked first. | ||
27 | -- | ||
28 | 1.7.4.1 | ||
29 | |||