diff options
author | Karl Berry <karl@freefriends.org> | 2019-06-22 22:05:57 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-06-22 22:05:57 +0000 |
commit | 69210e3404429005409ef0824d1faa942a4a96e7 (patch) | |
tree | 191dbba9b9127bcf988e8b10409a5a29f71de09c /Build/source/Makefile.in | |
parent | 3f444ab8318d583f7cadb0d135486a8b204b567c (diff) |
do buildinfo.sh first
git-svn-id: svn://tug.org/texlive/trunk@51425 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/Makefile.in')
-rw-r--r-- | Build/source/Makefile.in | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Build/source/Makefile.in b/Build/source/Makefile.in index 9160a978016..879bf06f86f 100644 --- a/Build/source/Makefile.in +++ b/Build/source/Makefile.in @@ -514,8 +514,8 @@ CONFIG_AUX = $(recurse_top)subsubdir-conf.cmd # and there is no install-hook or install-local. texlinks_dir = texk/texlive/tl_scripts -# should be harmless to run that, but just in case: -build_info_target = build-info +# should be harmless to run it, but just in case: +build_info_target = buildinfo @cross_FALSE@check_target = check # Allow for skipping make check if needed. @@ -1035,9 +1035,6 @@ $(CONFIG_AUX): # This (world) is the default target for the ./Build script in TeX Live. .PHONY: world world: all - @echo "top-level make $@: running $(build_info_target)..." - $(MAKE) $(AM_MAKEFLAGS) $(build_info_target) -# # Serialize 'make all' and 'make install-strip'. @echo "top-level make $@: running install-strip..." $(MAKE) $(AM_MAKEFLAGS) install-strip @@ -1052,12 +1049,15 @@ world: all # create file buildinfo.log in working directory, to record relevant # information about the build environment. -build-info: +buildinfo: -env MAKE="$(MAKE)" LDFLAGS="$(LDFLAGS)" \ CC="$(CC)" CFLAGS="$(CFLAGS)" \ CXX="$(CXX)" CXXFLAGS="$(CXXFLAGS)" \ OBJC="$(OBJC)" OBJCXXFLAGS="$(OBJCXXFLAGS)" \ - $(srcdir)/doc/build-info.sh >buildinfo.log + $(srcdir)/doc/buildinfo.sh >buildinfo.log + +# run buildinfo first. +all-recursive: buildinfo install-exec-hook: @echo "WARNING: make install does not result in a usable TeX!" |