diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-11-22 17:39:46 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-11-23 08:46:41 +0100 |
commit | 9108da2c26d18e927b91e33d3729d9cf0f3eb8fa (patch) | |
tree | d9f29cfac6b5e04e5348582029ea41f7c6301f06 /.github | |
parent | 3e6eb18fcea96dfb33af3a2f03ce65444e710ff0 (diff) | |
download | curl-9108da2c26d18e927b91e33d3729d9cf0f3eb8fa.tar.gz |
cmake: private identifiers use CURL_ instead of CMAKE_ prefix
Since the 'CMAKE_' prefix is reserved for cmake's own private use.
Ref: https://cmake.org/cmake/help/latest/manual/cmake-variables.7.html
Reported-by: Boris Rasin
Fixes #7988
Closes #8044
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/macos.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index aa4c24d5a..d0094bc0f 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -115,7 +115,7 @@ jobs: generate: -DOPENSSL_ROOT_DIR=/usr/local/opt/libressl -DCURL_DISABLE_LDAP=ON -DCURL_DISABLE_LDAPS=ON - name: libssh2 install: nghttp2 openssl libssh2 - generate: -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl -DCMAKE_USE_LIBSSH2=ON + generate: -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl -DCURL_USE_LIBSSH2=ON steps: - run: echo libtool autoconf automake pkg-config ${{ matrix.build.install }} | xargs -Ix -n1 echo brew '"x"' > /tmp/Brewfile name: 'brew bundle' |