diff options
author | 2020-03-03 23:55:48 +0100 | |
---|---|---|
committer | 2020-03-03 23:55:48 +0100 | |
commit | 22e833af5e7bc287c9898e9afd98f257cbdf721d (patch) | |
tree | 420aa3e64fbdfe0855fcbb36130c3c3987022fe1 /utils | |
parent | d8fd0b242b1c015b8f20375fd622071bd86fbbf8 (diff) | |
download | buildroot-22e833af5e7bc287c9898e9afd98f257cbdf721d.tar.gz buildroot-22e833af5e7bc287c9898e9afd98f257cbdf721d.tar.bz2 |
Config.in: drop BR2_NEEDS_HOST_{JAVAC,JAR}
With classpath removed, no packages select these symbols any more - So drop
them and their corresponding logic in dependencies.sh / genrandconfig.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/genrandconfig | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/utils/genrandconfig b/utils/genrandconfig index 5b60bc21d6..c79360be89 100755 --- a/utils/genrandconfig +++ b/utils/genrandconfig @@ -206,10 +206,6 @@ def fixup_config(sysinfo, configfile): if "BR2_NEEDS_HOST_JAVA=y\n" in configlines and not sysinfo.has("java"): return False - if "BR2_NEEDS_HOST_JAVAC=y\n" in configlines and not sysinfo.has("javac"): - return False - if "BR2_NEEDS_HOST_JAR=y\n" in configlines and not sysinfo.has("jar"): - return False # python-nfc needs bzr if 'BR2_PACKAGE_PYTHON_NFC=y\n' in configlines and not sysinfo.has("bzr"): return False |