diff options
author | Gabriel Dos Reis <GabrielDosReis@users.noreply.github.com> | 2022-09-17 17:41:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-17 17:41:17 -0700 |
commit | dbe239cd6eee022d1b8dccb9d8a1368acf52a8d7 (patch) | |
tree | d8924d8542d94d2ec4e327e96014d0e61365fe1f /src/boot | |
parent | e18a2c1579348b7367762e4db733a36fa76719ba (diff) | |
download | open-axiom-dbe239cd6eee022d1b8dccb9d8a1368acf52a8d7.tar.gz |
Disable automatic re-run of configuration steps. (#29)
Diffstat (limited to 'src/boot')
-rw-r--r-- | src/boot/Makefile.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/boot/Makefile.in b/src/boot/Makefile.in index f66f953d..ff948cad 100644 --- a/src/boot/Makefile.in +++ b/src/boot/Makefile.in @@ -299,6 +299,7 @@ LLVM_CONFIG = @LLVM_CONFIG@ LNKEXT = @LNKEXT@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ MAKE = @MAKE@ MAKEINDEX = @MAKEINDEX@ MAKEINFO = @MAKEINFO@ @@ -517,7 +518,7 @@ all: all-am .SUFFIXES: .SUFFIXES: .cc .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ @@ -541,9 +542,9 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(top_srcdir)/configure: $(am__configure_deps) +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): |