diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-06-07 21:49:37 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-06-08 19:10:03 +0200 |
commit | bb08565b91c21e1ffaf0b4b4f0750a52dbb87af2 (patch) | |
tree | ab8cfc9da29d66bb78c6150356711b051b24cdbc /bootstrap.am | |
parent | b6de523a77149b0262403721ede2ee57c0d3716e (diff) | |
download | sciteco-bb08565b91c21e1ffaf0b4b4f0750a52dbb87af2.tar.gz |
all SciTECO scripts used during the build process now always write files with Unix linebreaks
* when hosted on Windows, the default is DOS linebreaks
* Unix linebreaks are in many cases more consistent as all other sources use Unix linebreaks
* woman pages with Unix linebreaks are slightly faster to load due to EOL conversion
* especially Groff input must not contain CR as it will otherwise log lots of warnings
(affects htbl.tes and tedoc.tes).
Diffstat (limited to 'bootstrap.am')
-rw-r--r-- | bootstrap.am | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/bootstrap.am b/bootstrap.am index e4309bc..8e1c318 100644 --- a/bootstrap.am +++ b/bootstrap.am @@ -24,19 +24,19 @@ endif SCITECO_INSTALLED = \ $(bindir)/`echo sciteco | @SED@ '$(transform)'`$(EXEEXT) -SUBST_MACRO = eb$<\e \ - <fs@PACKAGE^Q@\e@PACKAGE@\e;>j \ - <fs@PACKAGE_NAME^Q@\e@PACKAGE_NAME@\e;>j \ - <fs@PACKAGE_VERSION^Q@\e@PACKAGE_VERSION@\e;>j \ - <fs@PACKAGE_URL^Q@\e@PACKAGE_URL@\e;>j \ - <fs@PACKAGE_URL_DEV^Q@\e@PACKAGE_URL_DEV@\e;>j \ - <fs@bindir^Q@\e$(bindir)\e;>j \ - <fs@libexecdir^Q@\e$(libexecdir)\e;>j \ - <fs@pkgdatadir^Q@\e$(pkgdatadir)\e;>j \ - <fs@scitecolibdir^Q@\e$(scitecolibdir)\e;>j \ - <fs@TECO_INTEGER^Q@\e@TECO_INTEGER@\e;>j \ - <fs@DATE^Q@\e$(shell LC_ALL=C @DATE@ "+%d %b %Y")\e; -D>j \ - ew$@\e +SUBST_MACRO = EB$<\e \ + <FS@PACKAGE^Q@\e@PACKAGE@\e;>J \ + <FS@PACKAGE_NAME^Q@\e@PACKAGE_NAME@\e;>J \ + <FS@PACKAGE_VERSION^Q@\e@PACKAGE_VERSION@\e;>J \ + <FS@PACKAGE_URL^Q@\e@PACKAGE_URL@\e;>J \ + <FS@PACKAGE_URL_DEV^Q@\e@PACKAGE_URL_DEV@\e;>J \ + <FS@bindir^Q@\e$(bindir)\e;>J \ + <FS@libexecdir^Q@\e$(libexecdir)\e;>J \ + <FS@pkgdatadir^Q@\e$(pkgdatadir)\e;>J \ + <FS@scitecolibdir^Q@\e$(scitecolibdir)\e;>J \ + <FS@TECO_INTEGER^Q@\e@TECO_INTEGER@\e;>J \ + <FS@DATE^Q@\e$(shell LC_ALL=C @DATE@ "+%d %b %Y")\e; -D>J \ + EW$@\e # The SciTECO-based substitutor must not process config.h.in. @top_srcdir@/config.h: ; |