diff options
author | Laura Abbott <labbott@redhat.com> | 2019-12-02 13:13:05 -0500 |
---|---|---|
committer | Laura Abbott <labbott@redhat.com> | 2019-12-02 13:59:05 -0500 |
commit | 692398cecfb6f7dd8bd82ec2e30e828db7e7c7d4 (patch) | |
tree | 10cae61871a8e3a79dad0a1a281626514a7be448 /check_configs.awk | |
parent | 9f6ee1011cd7cef63aa62c710601fbe03488cd8c (diff) | |
download | kernel-692398cecfb6f7dd8bd82ec2e30e828db7e7c7d4.tar.gz kernel-692398cecfb6f7dd8bd82ec2e30e828db7e7c7d4.tar.xz kernel-692398cecfb6f7dd8bd82ec2e30e828db7e7c7d4.zip |
Remove check_configs awk script
This has been folded into other config generation scripts
Diffstat (limited to 'check_configs.awk')
-rwxr-xr-x | check_configs.awk | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/check_configs.awk b/check_configs.awk deleted file mode 100755 index 16ac08a5e..000000000 --- a/check_configs.awk +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/awk -f - -/is not set/ { - split ($0, a, "#"); - split(a[2], b); - if (NR==FNR) { - configs[b[1]]="is not set"; - } else { - if (configs[b[1]] != "" && configs[b[1]] != "is not set") - print "Found # "b[1] " is not set, after generation, had " b[1] " " configs[b[1]] " in Fedora tree"; - } -} - -/=/ { - split ($0, a, "="); - if (NR==FNR) { - configs[a[1]]=a[2]; - } else { - if (configs[a[1]] != "" && configs[a[1]] != a[2]) - print "Found "a[1]"="configs[a[1]]" after generation, had " a[1]"="a[2]" in Fedora tree"; - } -} |