cmake: don't andd toolchain file when installing

This commit is contained in:
Rainer Sabelka 2022-09-25 12:04:17 +02:00
parent 587282459f
commit e7fb2a4293

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 "$@"
;;