]> git.ipfire.org Git - thirdparty/git.git/commit - Makefile
cmake: avoid editing t/test-lib.sh
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Tue, 18 Oct 2022 10:59:04 +0000 (10:59 +0000)
committerJunio C Hamano <gitster@pobox.com>
Wed, 19 Oct 2022 19:33:05 +0000 (12:33 -0700)
commitee9e66e4e762075f882ec18ed51270099723cfc9
tree4d2c112731ee82b3a1d13327541386585fb0b766
parent79d266223ab7c253c45ded9552694ca8a4b1f010
cmake: avoid editing t/test-lib.sh

In 7f5397a07c6c (cmake: support for testing git when building out of the
source tree, 2020-06-26), we implemented support for running Git's test
scripts even after building Git in a different directory than the source
directory.

The way we did this was to edit the file `t/test-lib.sh` to override
`GIT_BUILD_DIR` to point somewhere else than the parent of the `t/`
directory.

This is unideal because it always leaves a tracked file marked as
modified, and it is all too easy to commit that change by mistake.

Let's change the strategy by teaching `t/test-lib.sh` to detect the
presence of a file called `GIT-BUILD-DIR` in the source directory. If it
exists, the contents are interpreted as the location to the _actual_
build directory. We then write this file as part of the CTest
definition.

To support building Git via a regular `make` invocation after building
it using CMake, we ensure that the `GIT-BUILD-DIR` file is deleted (for
convenience, this is done as part of the Makefile rule that is already
run with every `make` invocation to ensure that `GIT-BUILD-OPTIONS` is
up to date).

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
.gitignore
Makefile
contrib/buildsystems/CMakeLists.txt
t/test-lib.sh