From 422a84db20751462f0f8bd58cef22f086f500fc3 Mon Sep 17 00:00:00 2001 From: Ivan Zhakov Date: Mon, 19 Aug 2024 18:56:27 +0000 Subject: [PATCH] Follow-up to r1903912: Remove trailing dot from CMake option description. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1920041 13f79535-47bb-0310-9956-ffa450edef68 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 05e6b68098..329be62094 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -72,7 +72,7 @@ OPTION(APR_HAVE_IPV6 "IPv6 support" ON) OPTION(INSTALL_PDB "Install .pdb files (if generated)" ON) OPTION(APR_BUILD_TESTAPR "Build the test suite" ON) OPTION(APR_BUILD_SHARED "Build shared libraries" ON) -OPTION(APR_BUILD_STATIC "Build static libraries." ON) +OPTION(APR_BUILD_STATIC "Build static libraries" ON) OPTION(APR_MODULAR_DSO "Use DSO build of modular components." ON) OPTION(APR_POOL_DEBUG "Turn on pools debugging." OFF) OPTION(TEST_STATIC_LIBS "Test programs use APR static libraries instead of shared libraries?" OFF)