From 1a7751d842716d74faf59a1da7a639ebbfbc0681 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Fri, 9 Jan 2026 11:58:15 +0200 Subject: [PATCH] Fix wrong cmake argument --- pkg.info | 2 +- source.sh | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/pkg.info b/pkg.info index 142cdf5..ccdc96c 100644 --- a/pkg.info +++ b/pkg.info @@ -1,7 +1,7 @@ name: re2 description: Fast, safe, thread-friendly regular expression engine version: 2025.11.05 -revision: 1 +revision: 2 url: https://github.com/google/re2 license: BSD-3-Clause architecture: any diff --git a/source.sh b/source.sh index 8e6b147..458b8b8 100644 --- a/source.sh +++ b/source.sh @@ -5,8 +5,7 @@ # The build function is executed in the source directory # This function is used to compile the source code build() { - cmake -B build -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_BUILD_SHARED_LIBS=ON + cmake -B build -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=ON cmake --build build }