mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-26 19:09:06 +00:00
This teaches the bootstrap shell script to detect the CMake source directory from which it is executed using a simpler idiom.
4 lines
99 B
Bash
Executable File
4 lines
99 B
Bash
Executable File
#!/bin/sh
|
|
cmake_source_dir=`cd "\`dirname \"$0\"\`";pwd`
|
|
exec "${cmake_source_dir}/bootstrap" "$@"
|