Enable change the system install path #653
Loading…
Reference in New Issue
No description provided.
Delete Branch "patch-2"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem:
The current
CMAKE_INSTALL_PREFIX
value for thesystem
build mode is/usr
. However, inmacOS
as an example, you cannot write to/usr
withoutsudo
permission.Proposed solution:
Enable changing the value to
/usr/local
(or any other path). This change makes the script use the value of the environment variableSYSTEM_INSTALL_PREFIX
to select the installation path. If the variable is not set, it fallback to the path/usr
.