fix: invoke MKDIR_P before changing directories
authorKienan Stewart <kstewart@efficios.com>
Wed, 6 Dec 2023 18:37:47 +0000 (13:37 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 10 Jan 2024 17:13:40 +0000 (12:13 -0500)
commit1a6b714510cd2e6e799a6abe92e0677fb82e5d1d
tree57b2c7f85596aae490459621812c645a515dffaf
parenta299ee8340bf1faa9a3cd7dfc50cae1789fd6313
fix: invoke MKDIR_P before changing directories

In autoconf < 2.72d `AC_PROG_MKDIR_P` may fall back to using
`install-sh` and that may be referenced as a relative path.

To avoid issues with relative paths causing the command to not be
found, the build directories are created before changing the working
directory.

One way to to test the behaviour prior to this commit is to configure
the build similar to the following:

    ./configure MKDIR_P="$(realpath --relative-to="$(pwd)" \
    $(command -v mkdir))" BUILD_EXAMPLES_FROM_TREE=1

Fixes https://bugs.lttng.org/issues/1404

Change-Id: I2d66254cd8c208f9236d55c6ef1b83c580560c7c
Signed-off-by: Kienan Stewart <kstewart@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
doc/examples/Makefile.am
This page took 0.02611 seconds and 4 git commands to generate.