summaryrefslogtreecommitdiffstats
path: root/package/qt5
Commit message (Collapse)AuthorAgeFilesLines
* qt5base: remove postgresql introduced uclibc dependency for the PostgresSQL ↵Peter Seiderer2015-03-151-4/+0
| | | | | | | plugin Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5base: fix the PostgreSQL detection patchPeter Seiderer2015-03-081-5/+6
| | | | | | | | | | | | The PostgreSQL detection patch added in commit 1b54fbc925f419f740f4cbc8229cfbf40ce84895 ("qt5base: fix postgresql plugin compile") had a minor issue: it was still calling the host pg_config to decided whether or not PostgreSQL was available. [Thomas: improve commit log.] Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5: bump version to 5.4.1Will Wagner2015-03-047-528/+1
| | | | | | | Also remove all patches that have been applied to 5.4.1 branch Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Merge branch 'next'Peter Korsgaard2015-03-023-5/+1
|\ | | | | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
| * packages: all salute the passing of avr32Yann E. MORIN2015-02-143-5/+1
| | | | | | | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* | qt5base: fix postgresql plugin compilePeter Seiderer2015-02-232-2/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add qt5base '-psql_config' configure option and use it to set pg_config path in configure step instead of legacy PSQL_LIBS enviornment variable. Fixes [1]: PostgreSQL auto-detection... () make[1]: Entering directory `/home/peko/autobuild/instance-0/output/build/qt5base-5.4.0/config.tests/unix/psql' /home/peko/autobuild/instance-0/output/host/usr/bin/sh-linux-gnu-g++ -c -pipe -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os --sysroot=/home/peko/autobuild/instance-0/output/host/usr/sh4a-buildroot-linux-gnu/sysroot -O2 -O3 -Wall -W -fPIE -I../../../mkspecs/devices/linux-buildroot-g++ -I. -I/usr/include/postgresql -o psql.o psql.cpp sh-linux-gnu-g++: ERROR: unsafe header/library path used in cross-compilation: '/usr/include/postgresql' make[1]: *** [psql.o] Error 1 make[1]: Leaving directory `/home/peko/autobuild/instance-0/output/build/qt5base-5.4.0/config.tests/unix/psql' PostgreSQL disabled. PostgreSQL support cannot be enabled due to functionality tests! Turn on verbose messaging (-v) to ./configure to see the final report. If you believe this message is in error you may use the continue switch (-continue) to ./configure to continue. make: *** [/home/peko/autobuild/instance-0/output/build/qt5base-5.4.0/.stamp_configured] Error 101 make: Leaving directory `/home/peko/autobuild/instance-0/buildroot' [1] http://autobuild.buildroot.net/results/354/354bae2337703ad8bfb9d33c79538df3017b7fe9/ Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* | qt5bse: configure: fix gold linker detectionPeter Korsgaard2015-02-151-0/+36
| | | | | | | | | | | | | | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/92c/92c3fb4ddb934115b228652bb8c972bb7459bb40/ While the -fuse-ld=gold flag is related to linking, it is an argument to the compiler driver to tell it what linker to execute, NOT an option to tell the linker to behave differently. So it shouldn't get prefixed with -Wl when passed though the compiler driver. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | qt5connectivity: fix for big endian platformsVicente Olivert Riera2015-02-141-0/+46
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a patch to fix qt5connectivity for big endian platforms. Building qtconnectivity fails for big endian platforms because the bswap_16 function is not declared. This is the error message: In file included from bluez/hcimanager_p.h:52:0, from bluez/hcimanager.cpp:35: ./bluez/bluez_data_p.h: In function 'quint16 bt_get_le16(const void*)': ./bluez/bluez_data_p.h:172:60: error: 'bswap_16' was not declared in this scope return bswap_16(bt_get_unaligned((const quint16 *) ptr)); bswap_16 is defined in byteswap.h so we can include this file in order to fix this problem. This patch has been submitted upstream: https://bugreports.qt.io/browse/QTBUG-44421 Fixes: http://autobuild.buildroot.net/results/5b8/5b85c6819f94988abd8abfcdaad6226ceb2d790a/ Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5multimedia: Make it compile with no-openglVicente Olivert Riera2015-02-081-0/+53
| | | | | | | | | | | | | | | | | | | | Backport an upstream patch to make it compile with no-opengl. Otherwise it will fail showing an error message like this one: qpaintervideosurface.cpp:99:47: error: 'QOpenGLContext' has not been declared Upstream commit: https://qt.gitorious.org/qt/qtmultimedia/commit/2b181d546970d18a48a0f36f5d1a22418b61cd4d Fixes: http://autobuild.buildroot.net/results/b77/b77cdf9b1cf6cafd5afef7337553bb32489207e5/ Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5webkit: add missing indirect dependency on atomics and !flatArnout Vandecappelle2015-02-071-0/+2
| | | | | Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5/qt5base: Fix build on MIPS without DSP supportVicente Olivert Riera2015-02-061-0/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | The qt_memfill32_asm_mips_dsp function is only declared if QT_COMPILER_SUPPORTS_MIPS_DSP is defined, so we can't reference it unless the same macro is defined. Backporting an upstream patch to fix this issue. This is the error message: qt-everywhere-enterprise-src-5.4.0-alpha/qtbase/src/gui/painting/qdrawhelper.cpp: In function 'void qInitDrawhelperAsm()': qt-everywhere-enterprise-src-5.4.0-alpha/qtbase/src/gui/painting/qdrawhelper.cpp:6843: error: 'qt_memfill32_asm_mips_dsp' was not declared in this scope Upstream commit: https://qt.gitorious.org/qt/qtbase/commit/2ca323ccd4f25f409eff8fc0c9804099b78c2bde Fixes: http://autobuild.buildroot.net/results/254/254cf62bef8bc5d5ffe345d817d16aa9983baa15/ Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5/qt5base: Fix build on big endian systemsVicente Olivert Riera2015-02-061-0/+51
| | | | | | | | | | | | | | | Backporting an upstream patch to fix a qt5base build failure on big endian systems. This is the error message: image/qimage_conversions.cpp:2257:9: error: expected '}' before numeric constant Upstream commit: https://qt.gitorious.org/qt/qtbase/commit/404f4281fda764cafdaa5635db995dabc4f1de8c Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5webkit: Fix build without OpenGLJohan Derycke2015-02-051-0/+291
| | | | | | | | | | | | | Fixes: http://autobuild.buildroot.net/results/691/6918c623b65a3cee45f2c29c29b36f9bf475cc76/ http://autobuild.buildroot.net/results/914/914056cbd9787aeae4c8b42e8a37453b1a271a02/ http://autobuild.buildroot.net/results/84d/84d3285cc8e2669c4ff4c1be3a1e8ea9a6933779/ Backport patch from upstream git: https://qt.gitorious.org/qt/qtwebkit/commit/4ecb913768ff0806c6efdff4567ef5907f597e4a Signed-off-by: Johan Derycke <johan.derycke@barco.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/*: rename patches according to the new policyPeter Korsgaard2015-02-033-0/+0
| | | | | | | Autogenerated from rename-patch.py (http://patchwork.ozlabs.org/patch/403345) Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5base: enable C++11 if toolchain supportsFatih Aşıcı2015-02-021-1/+0
| | | | | Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5: update URLs to use Qt's new domainFatih Aşıcı2015-02-0238-38/+38
| | | | | Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5: bump to version 5.4.0Fatih Aşıcı2015-02-0243-185/+490
| | | | | | | | | | | | | | | | | | | | | | qt5base: - Add patches to fix uClibc build. qt5connectivity: - Add patches to fix build with -no-c++11 qt5declarative: - Remove the line that installs accessible plugin. The functionality is moved into the qtquick library. qt5webkit: - Remove egl patch. This should be fixed with CONFIG += egl option. qt5websockets: - Remove upstreamed patch. Changelogs: https://qt-project.org/wiki/Change-files-in-Qt-5.4.0 Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5: remove hash file of the non-existing packageFatih Aşıcı2014-12-261-4/+0
| | | | | | | Added accidentally in 1e93aa4b9973c24cb16446b2373c222d512eb2e5. Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package: indentation cleanupJerzy Grzegorek2014-12-201-2/+2
| | | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Rename BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBSThomas Petazzoni2014-12-1116-20/+20
| | | | | | | | | | | | | | | | | | | | | | | Since a while, the semantic of BR2_PREFER_STATIC_LIB has been changed from "prefer static libraries when possible" to "use only static libraries". The former semantic didn't make much sense, since the user had absolutely no control/idea of which package would use static libraries, and which packages would not. Therefore, for quite some time, we have been starting to enforce that BR2_PREFER_STATIC_LIB should really build everything with static libraries. As a consequence, this patch renames BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS, and adjust the Config.in option accordingly. This also helps preparing the addition of other options to select shared, shared+static or just static. Note that we have verified that this commit can be reproduced by simply doing a global rename of BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS plus adding BR2_PREFER_STATIC_LIB to Config.in.legacy. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
* qt5base: add error handling to for loopThomas Petazzoni2014-12-011-1/+1
| | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/qt5webkit: fix build failureSamuel Martin2014-11-141-0/+31
| | | | | | | | | | This patch fixes build failure when the host python interpreter is python3. Fixes: http://autobuild.buildroot.net/results/af8/af8f3d3cc018006cee58d57cd9e8c6d8b3de3247/ Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/qt5webkit: rename patch to the new conventionSamuel Martin2014-11-141-0/+0
| | | | | Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5base: unconditionally install network, sql, xml and test modules to targetPeter Korsgaard2014-11-131-12/+4
| | | | | | | | | | | | The qt5 build system currently unconditionally builds and installs into staging these libraries, so ensure they also get installed into target to make sure we don't end up with dynamic linker errors at runtime. From src.pro: SUBDIRS += src_network src_sql src_xml src_testlib Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5base: unconditionally install Qt5printSupport if widgets are enabledPeter Korsgaard2014-11-131-4/+2
| | | | | | | | | | | | | | | | | | | | | | | The qt5 build system currently unconditionally builds and installs into staging Qt5PrintSupport if widgets are enabled, so ensure it also gets installed into target to make sure we don't end up with dynamic linker errors at runtime: test: error while loading shared libraries: libQt5PrintSupport.so.5: cannot open shared object file: No such file or directory From src.pro: !contains(QT_CONFIG, no-gui) { .. !wince*:!winrt { SUBDIRS += src_printsupport src_plugins.depends += src_printsupport } } Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5: use the BR2_ARM_CPU_ARM* optionsThomas Petazzoni2014-11-061-1/+1
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5: expose a QT5_QMAKE variable for other Qt5 packagesThomas Petazzoni2014-11-031-0/+3
| | | | | | | | | Much like package/qt/qt.mk exposes a QT_QMAKE variable that other qmake-based Qt4 libraries/applications can use in their .mk file, this commit adds a QT5_QMAKE variable to allow the same for Qt5 packages. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5: select qt5basePeter Korsgaard2014-11-031-0/+1
| | | | | | | | | | | qt5base is (as the name hints) the basics of anything related to qt5, so enabling qt5 without enabling qt5base doesn't make any sense as nothing will get built. Selecting it here also simplifies the upcoming series to add qt5 support to external qt modules. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5connectivity: propagate bluez-utils dependenciesVicente Olivert Riera2014-10-221-0/+7
| | | | | | | | | | | | | | | | | | qt5connectivity selects the bluez-utils package but the dependencies are not fully propagated so someone could do a static build, then select the qt5connectivity package causing bluez-utils being auto-selected, which is disabled for static builds, and then obtain a build failure like this one: checking for dlopen in -ldl... no configure: error: dynamic linking loader is required Fixes: http://autobuild.buildroot.net/results/96d/96d8297be0b731da138b1e2aafb851061aee3c40/ Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5: add hashesFatih Aşıcı2014-09-2619-0/+76
| | | | | Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5: bump to 5.3.2Fatih Aşıcı2014-09-164-38/+8
| | | | | | | | | | Only use ccache prefix in QMAKE_CC and QMAKE_CXX since the build system is broken when QMAKE_AR contains a space character. Remove the upstreamed uClibc patch. Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Merge branch 'next'Peter Korsgaard2014-09-012-0/+21
|\ | | | | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
| * qt5base: add postgresql driver supportFloris Bos2014-08-152-0/+21
| | | | | | | | | | | | Signed-off-by: Floris Bos <bos@je-eigen-domein.nl> Reviewed-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | package/icu: use the new ARCH_HAS_ATOMICS as dependencyYann E. MORIN2014-08-181-4/+1
|/ | | | | | | | | | And propagate to the reverse dependencies of icu. Also, fix beecrypt's comment: only the C++ support needs atomics. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Anton Kolesov <Anton.Kolesov@synopsys.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* icu: Add dependency on atomic intrinsicsAnton Kolesov2014-08-031-1/+4
| | | | | | | | ICU requires GCC built-in atomic functions which are architecture specific and may not be implemented. Signed-off-by: Anton Kolesov <Anton.Kolesov@synopsys.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package: remove the trailing slash sign from <PKG>_SITE variableJerzy Grzegorek2014-07-311-1/+1
| | | | | | | | | | | | Since the trailing slash is stripped from $($(PKG)_SITE) by pkg-generic.mk: $(call DOWNLOAD,$($(PKG)_SITE:/=)/$($(PKG)_SOURCE)) so it is redundant. This patch removes it from $(PKG)_SITE variable for BR consistency. Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5: Need pcre with UTF supportJérôme Pouiller2014-07-271-0/+1
| | | | | | | | | Enabling PCRE16 is not enough for Qt5. PCREUTF is also necessary, else Qt5 may complain with this kind of (non fatal) message: QRegularExpressionPrivate::doMatch(): called on an invalid QRegularExpression object Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5quickcontrols: depend on quick moduleFatih Aşıcı2014-07-211-7/+5
| | | | | | | Also remove redundant dependencies. Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5graphicaleffects: depend on quick moduleFatih Aşıcı2014-07-211-6/+5
| | | | | | | Also remove redundant dependencies. Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5: install qmls if quick module is selectedFatih Aşıcı2014-07-215-5/+5
| | | | | Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5declarative: add an option for quick moduleFatih Aşıcı2014-07-212-8/+21
| | | | | | | With this change, qt5declarative can be built without OpenGL. Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5multimedia: fix installation when quick is disabledFatih Aşıcı2014-07-211-1/+7
| | | | | | | | | | Fixes: http://autobuild.buildroot.net/results/b97/b975c4bb8aebad2d0b8eaefc98c42c0460ace5be/ http://autobuild.buildroot.net/results/b1c/b1ca9c845f1cf3a396cbd7ad81bfc4411974c709/ Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5base: allow selection of OpenGL APIFatih Aşıcı2014-07-203-7/+62
| | | | | Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5multimedia: make qt5declarative dependency optionalFatih Aşıcı2014-07-202-9/+7
| | | | | | | Also add missing dependencies on gui and network modules. Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5: Add an option to select default platformJérôme Pouiller2014-07-162-0/+14
| | | | | | | | | | | | | | | | | | Whithout this path, default platform is automaticaly set (generally set to "eglfs" as defined in qt5base/mkspecs/devices/common/linux_device_pre.conf:1). This choice is not always what the user would like. Thus, user have to manually appends "-platform <BACKEND>" to command line when running any qt5 application. This patch allows user to choose default platform explicitly. [Thomas: slightly improve Config.in help text, from the suggestions given by Yann E. Morin.] Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5webkit-examples: new packageMassimo Callegari2014-07-154-0/+91
| | | | | | | | [Thomas: remove QT5WEBKIT_EXAMPLES_INSTALL_STAGING = YES.] Signed-off-by: Massimo Callegari <massimocallegari@yahoo.it> Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5base: fix typoHadrien Boutteville2014-07-101-1/+1
| | | | | Signed-off-by: Hadrien Boutteville <hadrien.boutteville@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* infra: /usr support: STAGING_DIR can be outside BASE_DIRThomas De Schampheleire2014-07-041-0/+1
| | | | | | | | | | | | | If the user sets a custom BR2_HOST_DIR, then STAGING_DIR is not under BASE_DIR. The .pc/.la file fixup commands incorrectly made this assumption and thus should be corrected. Additionally, this patch: - rewords the comment in pkg-autotools that explains the replacements. - removes a for statement in favor of xargs Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5: support buildroot being located in /usrThomas De Schampheleire2014-06-291-1/+5
| | | | | | | | | | | | | | | | | qt5 performs sed replacements of /usr to $(STAGING_DIR)/usr in .la files. However, if buildroot itself is located in /usr, then STAGING_DIR also starts with /usr, and naive replacements of '/usr' can result in paths of the form: /usr/buildroot/.../sysroot/usr/buildroot/.../sysroot/... This patch makes the replacements more careful, by first replacing the known paths BASE_DIR and STAGING_DIR to tokens, then performing the actual replacement, and finally replacing the tokens with the corresponding paths. Partially fixes bug #5750 (https://bugs.busybox.net/show_bug.cgi?id=5750) Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5: bump to 5.3.1Fatih Aşıcı2014-06-272-47/+1
| | | | | | | Remove upstreamed patch. Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
OpenPOWER on IntegriCloud