您可以在您的 configure.ac 中放置任意 shell 代码。由于 AC_OUTPUT 应该是您的 configure.ac 的最后一行,因此在运行 config.status 之后将运行它之后的任何内容。
要在 config.status 之后执行 hello-world.sh,只需将其附加到您的 configure.ac:
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
$srcdir/hello.sh
如果从 srcdir 构建,则需要 $srcdir。