Closed kmk3 closed 6 months ago
Tools:
For the programs not checked in configure.ac:
From the manual of GNU Autoconf (version 2.71):
If you use AC_PROG_INSTALL, you must include install-sh in your distribution
AC_PROG_INSTALL
install-sh
So set install just in the Makefile. Use $(RM) to ensure that -f is always used and to make it easier to spot when -r is used.
install
$(RM)
-f
-r
See commit 93d623fdf ("build: allow overriding certain tools", 2024-02-23) / PR #6222.
This is a follow-up to #6342.
Tools:
For the programs not checked in configure.ac:
From the manual of GNU Autoconf (version 2.71):
So set
install
just in the Makefile. Use$(RM)
to ensure that-f
is always used and to make it easier to spot when-r
is used.See commit 93d623fdf ("build: allow overriding certain tools", 2024-02-23) / PR #6222.
This is a follow-up to #6342.