Merge pull request #729 from sabelka/cmake-install

cmake: don't add toolchain file when installing
This commit is contained in:
Matt McCormick 2022-10-31 13:04:28 -04:00 committed by GitHub
commit 71d07f3991
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,10 +10,11 @@
# -E = CMake command mode.
# --build <dir> = Build a CMake-generated project binary tree.
# --find-package = Run in pkg-config like mode.
# --install = install an already-generated project
#
case $1 in
-E|--build|--find-package)
-E|--build|--find-package|--install)
exec /usr/bin/cmake "$@"
;;