From a37a837fea88b3f60ad96337c7a9c23c4fb272af Mon Sep 17 00:00:00 2001 From: Michael Ford Date: Wed, 15 Feb 2023 20:05:07 +0800 Subject: [PATCH] tor: skip building libevent tests & samples (#9708) Skip building libevents tests and samples as part of tors build. --- projects/tor/build.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/projects/tor/build.sh b/projects/tor/build.sh index 1a4c35bc9..4b6be97cd 100644 --- a/projects/tor/build.sh +++ b/projects/tor/build.sh @@ -22,7 +22,12 @@ mkdir -p $TOR_DEPS # Build libevent with proper instrumentation. cd ${SRC}/libevent mkdir build && cd build -cmake -DEVENT__DISABLE_MBEDTLS=ON -DEVENT__DISABLE_OPENSSL=ON -DEVENT__LIBRARY_TYPE=STATIC ../ +cmake -DEVENT__DISABLE_MBEDTLS=ON \ + -DEVENT__DISABLE_OPENSSL=ON \ + -DEVENT__LIBRARY_TYPE=STATIC \ + -DEVENT__DISABLE_TESTS=ON \ + -DEVENT__DISABLE_SAMPLES=ON \ + ../ make && make install # Build OpenSSL with proper instrumentation.