diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2023-04-05 17:49:59 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2023-04-05 17:52:25 +0300 |
commit | cc417afe9bc04b37d7a2b708af8791cb4f8fa241 (patch) | |
tree | f5b44077c6cda80e41526cfd008378292ba083b0 | |
parent | 1c88da4c67cb94bbd6805419468b14b8fe77390e (diff) | |
download | sciteco-cc417afe9bc04b37d7a2b708af8791cb4f8fa241.tar.gz |
fixed formatting of dates in manpages
* The last digit of the year was cut off.
This was an artifact from the time that <EG> was used for inserting the date
as it was inserting a new line character as well.
This is no longer necessary as GNU Make is now executing the `date` tool.
-rw-r--r-- | bootstrap.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap.am b/bootstrap.am index 8e1c318..9fbe814 100644 --- a/bootstrap.am +++ b/bootstrap.am @@ -35,7 +35,7 @@ SUBST_MACRO = EB$<\e \ <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 \ + <FS@DATE^Q@\e$(shell LC_ALL=C @DATE@ "+%d %b %Y")\e;>J \ EW$@\e # The SciTECO-based substitutor must not process config.h.in. |