mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-01-25 13:49:29 +00:00
4cbd409508
We use the information from various configure time checks to populate paths.sh. The paths used are all absolute except for the python binary. In the switch to a more comprehensive check for python by commit fa05153e ("Make checking for python more predictable.") we ended up using AC_CHECK_PROGS which checks for the program on the path and sets the variable to the name of the program. This makes python inconsistent with the other programs and seems to cause problems for MSYS2. Use AC_PATH_PROGS instead which does the same check but sets the variable to the absolute name of the program Fixes #2047 Signed-off-by: Chris Packham <judge.packham@gmail.com>
These autoconf helper macros come from various sources: - ax_*.m4: autoconf-archive, version 2022.09.03 (copied) - pkg.m4: pkgconf, version 1.8.0 (run configure, then copy) - gettext.m4, iconv.m4, intlmacosx.m4, nls.m4: gettext 0.21.9 - ctng_*.m4: obviously, implemented anew - po.m4: a local dummy stub for gettext's version