From 411364deafd2bf9d3381e4cf391f65f691035c4c Mon Sep 17 00:00:00 2001 From: Mogeko Date: Sat, 20 Nov 2021 10:49:29 +0000 Subject: [PATCH] fix: use DCMAKE_C_COMPILER to set c compiler for cmake --- Dockerfile | 2 +- latest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3d635dd..4dc6b9a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ ARG LIBTORRENT_GIT=https://github.com/arvidn/libtorrent.git RUN git clone --depth 1 --recurse-submodules -b v${LIBTORRENT_VERSION} ${LIBTORRENT_GIT} . RUN cmake . -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_CXX_COMPILER=clang++ \ - -DCMAKE_CC_COMPILER=clang \ + -DCMAKE_C_COMPILER=clang \ -DCMAKE_INSTALL_PREFIX=/workspace/pkg \ -DCMAKE_CXX_STANDARD=17 \ && make -j$(nproc) \ diff --git a/latest.json b/latest.json index fc9ffb9..4fd400d 100644 --- a/latest.json +++ b/latest.json @@ -1,5 +1,5 @@ { "qbittorrent": "4.4.0beta3", "libtorrent": "2.0.4", - "pkgrel": 1 + "pkgrel": 2 }