texlive[61576] Build/source: do not propagate leading comments from
commits+karl at tug.org
commits+karl at tug.org
Tue Jan 11 23:54:50 CET 2022
Revision: 61576
http://tug.org/svn/texlive?view=revision&revision=61576
Author: karl
Date: 2022-01-11 23:54:49 +0100 (Tue, 11 Jan 2022)
Log Message:
-----------
do not propagate leading comments from Makefile.in, do add trailing comment for some *.am
Modified Paths:
--------------
trunk/Build/source/Makefile.in
trunk/Build/source/am/ChangeLog
trunk/Build/source/am/bin_links.am
trunk/Build/source/am/recurse.am
trunk/Build/source/libs/Makefile.in
trunk/Build/source/texk/Makefile.in
trunk/Build/source/texk/cjkutils/Makefile.in
trunk/Build/source/texk/dviljk/Makefile.in
trunk/Build/source/texk/dvipdfm-x/Makefile.in
trunk/Build/source/texk/dvipng/Makefile.in
trunk/Build/source/texk/web2c/Makefile.in
trunk/Build/source/texk/web2c/omegafonts/Makefile.in
trunk/Build/source/utils/Makefile.in
Modified: trunk/Build/source/Makefile.in
===================================================================
--- trunk/Build/source/Makefile.in 2022-01-11 22:47:10 UTC (rev 61575)
+++ trunk/Build/source/Makefile.in 2022-01-11 22:54:49 UTC (rev 61576)
@@ -494,23 +494,6 @@
DIST_SUBDIRS = auxdir/auxsub doc $(CONF_SUBDIRS) libs utils texk
recurse_this =
recurse_top =
-
-# am/recurse.am: Makefile fragment to configure and build subdirs.
-#
-# Copyright 2017-2020 Karl Berry <tex-live at tug.org>
-# Copyright 2013 Peter Breitenlohner <tex-live at tug.org>
-# You may freely use, modify and/or distribute this file.
-#
-# Requires $(recurse_this) and $(recurse_top).
-# Uses CONF_SUBDIRS and MAKE_SUBDIRS (set by kpse-setup.m4).
-#
-# For subdirs not required for the current set of configure options
-# we append '--disable-build' so they can skip tests that would
-# fail because, e.g., some required libraries were not built.
-# (By manually testing $enable_build in configure, e.g., dvisvgm/configure.)
-#
-# Code inspired by automake's way to handle recursive targets.
-#
cf_silent = $(cf_silent_ at AM_V@)
cf_silent_ = $(cf_silent_ at AM_DEFAULT_V@)
cf_silent_0 = --silent
@@ -1044,6 +1027,8 @@
@echo "configure in $(recurse_top)auxdir/auxsub failed to create the file $@"
exit 1
+# (end of recurse.am)
+
# This (world) is the default target for the ./Build script in TeX Live.
.PHONY: world
world: all
Modified: trunk/Build/source/am/ChangeLog
===================================================================
--- trunk/Build/source/am/ChangeLog 2022-01-11 22:47:10 UTC (rev 61575)
+++ trunk/Build/source/am/ChangeLog 2022-01-11 22:54:49 UTC (rev 61576)
@@ -1,3 +1,11 @@
+2022-01-11 Karl Berry <karl at freefriends.org>
+
+ * bin_links.am,
+ * recurse.am: comment out comments (##) again; turns out
+ the leading comments all end up at the beginning of Makefile.in,
+ which is not useful. On the other hand, insert # (end of ...)
+ comments, which do show up in the normal place.
+
2017-02-17 Karl Berry <karl at freefriends.org>
* bin_links.am,
Modified: trunk/Build/source/am/bin_links.am
===================================================================
--- trunk/Build/source/am/bin_links.am 2022-01-11 22:47:10 UTC (rev 61575)
+++ trunk/Build/source/am/bin_links.am 2022-01-11 22:54:49 UTC (rev 61576)
@@ -1,18 +1,18 @@
## $Id$
-# am/bin_links.am: Makefile fragment for bindir links.
-#
-# Copyright 2017-2020 Karl Berry <tex-live at tug.org>
-# Copyright 2011-2013 Peter Breitenlohner <tex-live at tug.org>
-# You may freely use, modify and/or distribute this file.
-#
-# requires conditional WIN32
-# requires $(bin_links)
-# Symlinks within $(bindir): FILE:LINK indicates LINK->FILE
-# for binaries and scripts use, e.g.,
-# binprog$(EXEEXT):foo
-# script:bar
-# respectively, such that the links created on cygwin are
-# 'foo->binprog.exe' and 'bar->script'.
+## am/bin_links.am: Makefile fragment for bindir links.
+##
+## Copyright 2017-2022 Karl Berry <tex-live at tug.org>
+## Copyright 2011-2013 Peter Breitenlohner <tex-live at tug.org>
+## You may freely use, modify and/or distribute this file.
+##
+## requires conditional WIN32
+## requires $(bin_links)
+## Symlinks within $(bindir): FILE:LINK indicates LINK->FILE
+## for binaries and scripts use, e.g.,
+## binprog$(EXEEXT):foo
+## script:bar
+## respectively, such that the links created on cygwin are
+## 'foo->binprog.exe' and 'bar->script'.
.PHONY: install-bin-links uninstall-bin-links
@@ -37,3 +37,4 @@
done
endif !WIN32
+# (end of bin_links.am)
Modified: trunk/Build/source/am/recurse.am
===================================================================
--- trunk/Build/source/am/recurse.am 2022-01-11 22:47:10 UTC (rev 61575)
+++ trunk/Build/source/am/recurse.am 2022-01-11 22:54:49 UTC (rev 61576)
@@ -1,20 +1,20 @@
## $Id$
-# am/recurse.am: Makefile fragment to configure and build subdirs.
-#
-# Copyright 2017-2020 Karl Berry <tex-live at tug.org>
-# Copyright 2013 Peter Breitenlohner <tex-live at tug.org>
-# You may freely use, modify and/or distribute this file.
-#
-# Requires $(recurse_this) and $(recurse_top).
-# Uses CONF_SUBDIRS and MAKE_SUBDIRS (set by kpse-setup.m4).
-#
-# For subdirs not required for the current set of configure options
-# we append '--disable-build' so they can skip tests that would
-# fail because, e.g., some required libraries were not built.
-# (By manually testing $enable_build in configure, e.g., dvisvgm/configure.)
-#
-# Code inspired by automake's way to handle recursive targets.
-#
+## am/recurse.am: Makefile fragment to configure and build subdirs.
+##
+## Copyright 2017-2022 Karl Berry <tex-live at tug.org>
+## Copyright 2013 Peter Breitenlohner <tex-live at tug.org>
+## You may freely use, modify and/or distribute this file.
+##
+## Requires $(recurse_this) and $(recurse_top).
+## Uses CONF_SUBDIRS and MAKE_SUBDIRS (set by kpse-setup.m4).
+##
+## For subdirs not required for the current set of configure options
+## we append '--disable-build' so they can skip tests that would
+## fail because, e.g., some required libraries were not built.
+## (By manually testing $enable_build in configure, e.g., dvisvgm/configure.)
+##
+## Code inspired by automake's way to handle recursive targets.
+
cf_silent = $(cf_silent_ at AM_V@)
cf_silent_ = $(cf_silent_ at AM_DEFAULT_V@)
cf_silent_0 = --silent
@@ -56,3 +56,5 @@
$(CONFIG_AUX):
@echo "configure in $(recurse_top)auxdir/auxsub failed to create the file $@"
exit 1
+
+# (end of recurse.am)
Modified: trunk/Build/source/libs/Makefile.in
===================================================================
--- trunk/Build/source/libs/Makefile.in 2022-01-11 22:47:10 UTC (rev 61575)
+++ trunk/Build/source/libs/Makefile.in 2022-01-11 22:54:49 UTC (rev 61576)
@@ -420,23 +420,6 @@
# Files not to be distributed
recurse_this = libs/
recurse_top = ../
-
-# am/recurse.am: Makefile fragment to configure and build subdirs.
-#
-# Copyright 2017-2020 Karl Berry <tex-live at tug.org>
-# Copyright 2013 Peter Breitenlohner <tex-live at tug.org>
-# You may freely use, modify and/or distribute this file.
-#
-# Requires $(recurse_this) and $(recurse_top).
-# Uses CONF_SUBDIRS and MAKE_SUBDIRS (set by kpse-setup.m4).
-#
-# For subdirs not required for the current set of configure options
-# we append '--disable-build' so they can skip tests that would
-# fail because, e.g., some required libraries were not built.
-# (By manually testing $enable_build in configure, e.g., dvisvgm/configure.)
-#
-# Code inspired by automake's way to handle recursive targets.
-#
cf_silent = $(cf_silent_ at AM_V@)
cf_silent_ = $(cf_silent_ at AM_DEFAULT_V@)
cf_silent_0 = --silent
@@ -947,6 +930,8 @@
@echo "configure in $(recurse_top)auxdir/auxsub failed to create the file $@"
exit 1
+# (end of recurse.am)
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
Modified: trunk/Build/source/texk/Makefile.in
===================================================================
--- trunk/Build/source/texk/Makefile.in 2022-01-11 22:47:10 UTC (rev 61575)
+++ trunk/Build/source/texk/Makefile.in 2022-01-11 22:54:49 UTC (rev 61576)
@@ -420,23 +420,6 @@
# Files not to be distributed
recurse_this = texk/
recurse_top = ../
-
-# am/recurse.am: Makefile fragment to configure and build subdirs.
-#
-# Copyright 2017-2020 Karl Berry <tex-live at tug.org>
-# Copyright 2013 Peter Breitenlohner <tex-live at tug.org>
-# You may freely use, modify and/or distribute this file.
-#
-# Requires $(recurse_this) and $(recurse_top).
-# Uses CONF_SUBDIRS and MAKE_SUBDIRS (set by kpse-setup.m4).
-#
-# For subdirs not required for the current set of configure options
-# we append '--disable-build' so they can skip tests that would
-# fail because, e.g., some required libraries were not built.
-# (By manually testing $enable_build in configure, e.g., dvisvgm/configure.)
-#
-# Code inspired by automake's way to handle recursive targets.
-#
cf_silent = $(cf_silent_ at AM_V@)
cf_silent_ = $(cf_silent_ at AM_DEFAULT_V@)
cf_silent_0 = --silent
@@ -950,6 +933,8 @@
@echo "configure in $(recurse_top)auxdir/auxsub failed to create the file $@"
exit 1
+# (end of recurse.am)
+
# Special target to run TRIP and TRAP tests and create diffs.
.PHONY: triptrap
triptrap:
Modified: trunk/Build/source/texk/cjkutils/Makefile.in
===================================================================
--- trunk/Build/source/texk/cjkutils/Makefile.in 2022-01-11 22:47:10 UTC (rev 61575)
+++ trunk/Build/source/texk/cjkutils/Makefile.in 2022-01-11 22:54:49 UTC (rev 61576)
@@ -14,23 +14,8 @@
@SET_MAKE@
-# am/bin_links.am: Makefile fragment for bindir links.
-#
-# Copyright 2017-2020 Karl Berry <tex-live at tug.org>
-# Copyright 2011-2013 Peter Breitenlohner <tex-live at tug.org>
-# You may freely use, modify and/or distribute this file.
-#
-# requires conditional WIN32
-# requires $(bin_links)
-# Symlinks within $(bindir): FILE:LINK indicates LINK->FILE
-# for binaries and scripts use, e.g.,
-# binprog$(EXEEXT):foo
-# script:bar
-# respectively, such that the links created on cygwin are
-# 'foo->binprog.exe' and 'bar->script'.
-
VPATH = @srcdir@
am__is_gnu_make = { \
if test -z '$(MAKELEVEL)'; then \
@@ -1644,6 +1629,8 @@
@WIN32_FALSE@ rm -f $(DESTDIR)$(bindir)/$$link; \
@WIN32_FALSE@ done
+# (end of bin_links.am)
+
@KPATHSEA_RULE@
@WIN32_TRUE at install-exec-hook:
@WIN32_TRUE@ @cd $(DESTDIR)$(bindir) && \
Modified: trunk/Build/source/texk/dviljk/Makefile.in
===================================================================
--- trunk/Build/source/texk/dviljk/Makefile.in 2022-01-11 22:47:10 UTC (rev 61575)
+++ trunk/Build/source/texk/dviljk/Makefile.in 2022-01-11 22:54:49 UTC (rev 61576)
@@ -14,23 +14,8 @@
@SET_MAKE@
-# am/bin_links.am: Makefile fragment for bindir links.
-#
-# Copyright 2017-2020 Karl Berry <tex-live at tug.org>
-# Copyright 2011-2013 Peter Breitenlohner <tex-live at tug.org>
-# You may freely use, modify and/or distribute this file.
-#
-# requires conditional WIN32
-# requires $(bin_links)
-# Symlinks within $(bindir): FILE:LINK indicates LINK->FILE
-# for binaries and scripts use, e.g.,
-# binprog$(EXEEXT):foo
-# script:bar
-# respectively, such that the links created on cygwin are
-# 'foo->binprog.exe' and 'bar->script'.
-
VPATH = @srcdir@
am__is_gnu_make = { \
if test -z '$(MAKELEVEL)'; then \
@@ -1325,6 +1310,8 @@
@WIN32_FALSE@ link=`echo $$s | sed 's,.*:,,'`; \
@WIN32_FALSE@ rm -f $(DESTDIR)$(bindir)/$$link; \
@WIN32_FALSE@ done
+
+# (end of bin_links.am)
.PHONY: install-man1-links uninstall-man1-links
install-man1-links:
Modified: trunk/Build/source/texk/dvipdfm-x/Makefile.in
===================================================================
--- trunk/Build/source/texk/dvipdfm-x/Makefile.in 2022-01-11 22:47:10 UTC (rev 61575)
+++ trunk/Build/source/texk/dvipdfm-x/Makefile.in 2022-01-11 22:54:49 UTC (rev 61576)
@@ -14,23 +14,8 @@
@SET_MAKE@
-# am/bin_links.am: Makefile fragment for bindir links.
-#
-# Copyright 2017-2020 Karl Berry <tex-live at tug.org>
-# Copyright 2011-2013 Peter Breitenlohner <tex-live at tug.org>
-# You may freely use, modify and/or distribute this file.
-#
-# requires conditional WIN32
-# requires $(bin_links)
-# Symlinks within $(bindir): FILE:LINK indicates LINK->FILE
-# for binaries and scripts use, e.g.,
-# binprog$(EXEEXT):foo
-# script:bar
-# respectively, such that the links created on cygwin are
-# 'foo->binprog.exe' and 'bar->script'.
-
VPATH = @srcdir@
am__is_gnu_make = { \
if test -z '$(MAKELEVEL)'; then \
@@ -1982,6 +1967,8 @@
@WIN32_FALSE@ link=`echo $$s | sed 's,.*:,,'`; \
@WIN32_FALSE@ rm -f $(DESTDIR)$(bindir)/$$link; \
@WIN32_FALSE@ done
+
+# (end of bin_links.am)
.PHONY: install-man1-links uninstall-man1-links
install-man1-links:
Modified: trunk/Build/source/texk/dvipng/Makefile.in
===================================================================
--- trunk/Build/source/texk/dvipng/Makefile.in 2022-01-11 22:47:10 UTC (rev 61575)
+++ trunk/Build/source/texk/dvipng/Makefile.in 2022-01-11 22:54:49 UTC (rev 61576)
@@ -14,21 +14,6 @@
@SET_MAKE@
-# am/bin_links.am: Makefile fragment for bindir links.
-#
-# Copyright 2017-2020 Karl Berry <tex-live at tug.org>
-# Copyright 2011-2013 Peter Breitenlohner <tex-live at tug.org>
-# You may freely use, modify and/or distribute this file.
-#
-# requires conditional WIN32
-# requires $(bin_links)
-# Symlinks within $(bindir): FILE:LINK indicates LINK->FILE
-# for binaries and scripts use, e.g.,
-# binprog$(EXEEXT):foo
-# script:bar
-# respectively, such that the links created on cygwin are
-# 'foo->binprog.exe' and 'bar->script'.
-
VPATH = @srcdir@
am__is_gnu_make = { \
if test -z '$(MAKELEVEL)'; then \
@@ -1609,6 +1594,8 @@
@WIN32_FALSE@ link=`echo $$s | sed 's,.*:,,'`; \
@WIN32_FALSE@ rm -f $(DESTDIR)$(bindir)/$$link; \
@WIN32_FALSE@ done
+
+# (end of bin_links.am)
@WIN32_FALSE@@have_gif_TRUE at install-exec-hook: install-bin-links
@WIN32_FALSE@@have_gif_TRUE at uninstall-hook: uninstall-bin-links
dvipng.log: dvipng$(EXEEXT)
Modified: trunk/Build/source/texk/web2c/Makefile.in
===================================================================
--- trunk/Build/source/texk/web2c/Makefile.in 2022-01-11 22:47:10 UTC (rev 61575)
+++ trunk/Build/source/texk/web2c/Makefile.in 2022-01-11 22:54:49 UTC (rev 61576)
@@ -14,25 +14,10 @@
@SET_MAKE@
-# am/bin_links.am: Makefile fragment for bindir links.
-#
-# Copyright 2017-2020 Karl Berry <tex-live at tug.org>
-# Copyright 2011-2013 Peter Breitenlohner <tex-live at tug.org>
-# You may freely use, modify and/or distribute this file.
-#
-# requires conditional WIN32
-# requires $(bin_links)
-# Symlinks within $(bindir): FILE:LINK indicates LINK->FILE
-# for binaries and scripts use, e.g.,
-# binprog$(EXEEXT):foo
-# script:bar
-# respectively, such that the links created on cygwin are
-# 'foo->binprog.exe' and 'bar->script'.
-
VPATH = @srcdir@
am__is_gnu_make = { \
if test -z '$(MAKELEVEL)'; then \
@@ -22541,6 +22526,8 @@
@WIN32_FALSE@ rm -f $(DESTDIR)$(bindir)/$$link; \
@WIN32_FALSE@ done
+# (end of bin_links.am)
+
install-exec-hook: install-bin-links $(install_exe_links)
uninstall-hook: uninstall-bin-links $(uninstall_exe_links)
Modified: trunk/Build/source/texk/web2c/omegafonts/Makefile.in
===================================================================
--- trunk/Build/source/texk/web2c/omegafonts/Makefile.in 2022-01-11 22:47:10 UTC (rev 61575)
+++ trunk/Build/source/texk/web2c/omegafonts/Makefile.in 2022-01-11 22:54:49 UTC (rev 61576)
@@ -14,21 +14,6 @@
@SET_MAKE@
-# am/bin_links.am: Makefile fragment for bindir links.
-#
-# Copyright 2017-2020 Karl Berry <tex-live at tug.org>
-# Copyright 2011-2013 Peter Breitenlohner <tex-live at tug.org>
-# You may freely use, modify and/or distribute this file.
-#
-# requires conditional WIN32
-# requires $(bin_links)
-# Symlinks within $(bindir): FILE:LINK indicates LINK->FILE
-# for binaries and scripts use, e.g.,
-# binprog$(EXEEXT):foo
-# script:bar
-# respectively, such that the links created on cygwin are
-# 'foo->binprog.exe' and 'bar->script'.
-
VPATH = @srcdir@
am__is_gnu_make = { \
if test -z '$(MAKELEVEL)'; then \
@@ -1424,6 +1409,8 @@
@WIN32_FALSE@ rm -f $(DESTDIR)$(bindir)/$$link; \
@WIN32_FALSE@ done
+# (end of bin_links.am)
+
@OTANGLE_TRUE at install-exec-hook: install-bin-links
# same install happens in dvipdfmx.
@OTANGLE_TRUE@@WIN32_TRUE@ for f in $(linked_programs); do \
Modified: trunk/Build/source/utils/Makefile.in
===================================================================
--- trunk/Build/source/utils/Makefile.in 2022-01-11 22:47:10 UTC (rev 61575)
+++ trunk/Build/source/utils/Makefile.in 2022-01-11 22:54:49 UTC (rev 61576)
@@ -420,23 +420,6 @@
# Files not to be distributed
recurse_this = utils/
recurse_top = ../
-
-# am/recurse.am: Makefile fragment to configure and build subdirs.
-#
-# Copyright 2017-2020 Karl Berry <tex-live at tug.org>
-# Copyright 2013 Peter Breitenlohner <tex-live at tug.org>
-# You may freely use, modify and/or distribute this file.
-#
-# Requires $(recurse_this) and $(recurse_top).
-# Uses CONF_SUBDIRS and MAKE_SUBDIRS (set by kpse-setup.m4).
-#
-# For subdirs not required for the current set of configure options
-# we append '--disable-build' so they can skip tests that would
-# fail because, e.g., some required libraries were not built.
-# (By manually testing $enable_build in configure, e.g., dvisvgm/configure.)
-#
-# Code inspired by automake's way to handle recursive targets.
-#
cf_silent = $(cf_silent_ at AM_V@)
cf_silent_ = $(cf_silent_ at AM_DEFAULT_V@)
cf_silent_0 = --silent
@@ -947,6 +930,8 @@
@echo "configure in $(recurse_top)auxdir/auxsub failed to create the file $@"
exit 1
+# (end of recurse.am)
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
More information about the tex-live-commits
mailing list.