diff options
author | Denys Vlasenko | 2018-06-26 16:08:22 +0200 |
---|---|---|
committer | Denys Vlasenko | 2018-06-26 16:08:22 +0200 |
commit | 185326613d2a7535aac4ea112f060d86096ac0ee (patch) | |
tree | cbd64f4e67ffce267c98cbfb1de299bd211823ec /scripts/randomtest | |
parent | 5f5119be971825e359f8dd3456f99f07546eca7f (diff) | |
download | busybox-185326613d2a7535aac4ea112f060d86096ac0ee.zip busybox-185326613d2a7535aac4ea112f060d86096ac0ee.tar.gz |
scripts/randomtest: disable CONFIG_FEATURE_INETD_RPC for glibc
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 19f6634..3434531 100755 --- a/scripts/randomtest +++ b/scripts/randomtest @@ -58,6 +58,7 @@ if test x"$LIBC" = x"glibc"; then | grep -v CONFIG_FEATURE_USE_BSS_TAIL \ | grep -v CONFIG_DEBUG_SANITIZE \ | grep -v CONFIG_FEATURE_MOUNT_NFS \ + | grep -v CONFIG_FEATURE_INETD_RPC \ >.config.new mv .config.new .config echo '# CONFIG_STATIC is not set' >>.config @@ -69,6 +70,7 @@ if test x"$LIBC" = x"glibc"; then echo '# CONFIG_DEBUG_SANITIZE is not set' >>.config # 2018: current glibc versions no longer include rpc/rpc.h echo '# CONFIG_FEATURE_MOUNT_NFS is not set' >>.config + echo '# CONFIG_FEATURE_INETD_RPC is not set' >>.config fi # If uclibc, build static, and remove some things |