diff options
author | Denys Vlasenko | 2018-06-26 17:22:35 +0200 |
---|---|---|
committer | Denys Vlasenko | 2018-06-26 17:22:35 +0200 |
commit | 762440b20e3b75ab30ddca55cfdc657397bb38dc (patch) | |
tree | 6825ccef9573dffd5ef898244c8ed34f502061da /scripts/randomtest | |
parent | 185326613d2a7535aac4ea112f060d86096ac0ee (diff) | |
download | busybox-762440b20e3b75ab30ddca55cfdc657397bb38dc.zip busybox-762440b20e3b75ab30ddca55cfdc657397bb38dc.tar.gz |
scripts/randomtest: disable CONFIG_NSLOOKUP for uclibc
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'scripts/randomtest')
-rwxr-xr-x | scripts/randomtest | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/randomtest b/scripts/randomtest index 3434531..94709a9 100755 --- a/scripts/randomtest +++ b/scripts/randomtest @@ -91,6 +91,7 @@ if test x"$LIBC" = x"uclibc"; then | grep -v CONFIG_UNSHARE \ | grep -v CONFIG_FALLOCATE \ | grep -v CONFIG_UDHCPC6 \ + | grep -v CONFIG_NSLOOKUP \ | grep -v CONFIG_ASH_INTERNAL_GLOB \ >.config.new mv .config.new .config @@ -108,6 +109,7 @@ if test x"$LIBC" = x"uclibc"; then echo '# CONFIG_UNSHARE is not set' >>.config echo '# CONFIG_FALLOCATE is not set' >>.config echo '# CONFIG_UDHCPC6 is not set' >>.config + echo '# CONFIG_NSLOOKUP is not set' >>.config echo 'CONFIG_ASH_INTERNAL_GLOB=y' >>.config fi |