diff options
author | 2019-02-06 16:11:14 +0100 | |
---|---|---|
committer | 2019-02-06 16:30:39 +0100 | |
commit | a11d61e104bb01146b032c461a12a7340e23cae2 (patch) | |
tree | 4915044806979fd462e78b0b1614830b124d51b2 | |
parent | 8fed1629878bfe620c533558ae3959a76588aec6 (diff) | |
download | buildroot-a11d61e104bb01146b032c461a12a7340e23cae2.tar.gz buildroot-a11d61e104bb01146b032c461a12a7340e23cae2.tar.bz2 |
utils/genrandconfig: drop qt4 fixups
Now that Qt4 is removed, these fixups can be removed as well.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
-rwxr-xr-x | utils/genrandconfig | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/utils/genrandconfig b/utils/genrandconfig index 047740a411..a2190d6d25 100755 --- a/utils/genrandconfig +++ b/utils/genrandconfig @@ -311,16 +311,8 @@ def fixup_config(configfile): return False # The cs nios2 2017.02 toolchain is affected by binutils PR19405 if 'BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII=y\n' in configlines and \ - 'BR2_PACKAGE_QT_GUI_MODULE=y\n' in configlines: - return False - # The cs nios2 2017.02 toolchain is affected by binutils PR19405 - if 'BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII=y\n' in configlines and \ 'BR2_PACKAGE_FLANN=y\n' in configlines: return False - # or1k affected by binutils PR21464 - if 'BR2_or1k=y\n' in configlines and \ - 'BR2_PACKAGE_QT_GUI_MODULE=y\n' in configlines: - return False with open(configfile, "w+") as configf: configf.writelines(configlines) |