From 615a98351768598db65fcfc521d3c67eb443eed6 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sun, 1 May 2022 14:05:01 -0700 Subject: [PATCH] cmake: default install prefix to ./stage1 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index aad902f953..d2b0c31054 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ if(NOT CMAKE_BUILD_TYPE) endif() if(NOT CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "${CMAKE_BINARY_DIR}" CACHE STRING + set(CMAKE_INSTALL_PREFIX "${CMAKE_BINARY_DIR}/stage1" CACHE STRING "Directory to install zig to" FORCE) endif()