1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Generate the revision.h before Makefile

Except for GNU make which updates makefiles automatically, repeating
configure in the same directory causes `make` to stop whenever pulled
a new commit.  This is unexpected in CIs.
This commit is contained in:
Nobuyoshi Nakada 2022-09-26 10:20:24 +09:00
parent b361bdc200
commit ecffc6a203
Notes: git 2022-09-26 13:03:45 +09:00

View file

@ -4368,6 +4368,14 @@ AC_SUBST(XCC_WRAPPER)
AS_CASE([" $CPP "], [*" $CC "*], [CPP=`echo " $CPP " | sed "s| $CC |"' $(CC) |;s/^ *//;s/ *$//'`])
AS_IF([test ! -f "$srcdir/revision.h"], [
AS_IF([test "x$HAVE_BASERUBY" = xyes], [
${BASERUBY} -C "$srcdir" tool/file2lastrev.rb -q --revision.h > "$srcdir/revision.h"
], [
touch "$srcdir/revision.h"
])
])
AS_IF([test x"$firstmf" != x], [
AC_CONFIG_FILES($firstmf:$firsttmpl, [], [firstmf="$firstmf" firsttmpl="$firsttmpl"])
])