From b5f7c8b282cee787cb9cb1cb1ab172cdf34e1fe8 Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Fri, 22 Jan 1999 15:19:51 +0000 Subject: [PATCH] * Makefile.am (ltconfig, ltmain.sh, TIMESTAMP): let's not assume anything about the format of the date, just that it does not contain `$' --- ChangeLog | 6 ++++++ Makefile.am | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index beaf78fad..49727012b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1999-01-22 Alexandre Oliva + + * Makefile.am (ltconfig, ltmain.sh, TIMESTAMP): let's not assume + anything about the format of the date, just that it does not + contain `$' + 1999-01-22 Gary V. Vaughan * configure.in (date): echo the version number during diff --git a/Makefile.am b/Makefile.am index 40d25c5b2..461c12a83 100644 --- a/Makefile.am +++ b/Makefile.am @@ -61,7 +61,7 @@ update-timestamps: # Line numbering transliterated from a section in autoconf (Autoconf 2.12). $(srcdir)/ltconfig: $(srcdir)/ltconfig.in $(top_srcdir)/configure.in $(TSDEPS) rm -f ltconfig.T - date=`sed 's%.*\$$''Date: \([0-9 /]*[0-9:]*\) \$$.*% (\1)%;t;d' \ + date=`sed 's%.*\$$''Date: \([^$$]*\) \$$.*% (\1)%;t;d' \ < $(srcdir)/ChangeLog` && \ $(AWK) '/@LINENO@/ { printf "%d:", NR } { print }' $(srcdir)/ltconfig.in | \ sed -e 's/@''PACKAGE@/@PACKAGE@/' -e 's/@''VERSION@/@VERSION@/' \ @@ -74,7 +74,7 @@ $(srcdir)/ltconfig: $(srcdir)/ltconfig.in $(top_srcdir)/configure.in $(TSDEPS) $(srcdir)/ltmain.sh: $(srcdir)/ltmain.in $(top_srcdir)/configure.in $(TSDEPS) rm -f ltmain.shT - date=`sed 's%.*\$$''Date: \([0-9 /]*[0-9:]*\) \$$.*% (\1)%;t;d' \ + date=`sed 's%.*\$$''Date: \([^$$]*\) \$$.*% (\1)%;t;d' \ < $(srcdir)/ChangeLog` && \ sed -e 's/@''PACKAGE@/@PACKAGE@/' -e 's/@''VERSION@/@VERSION@/' \ -e "s%@""TIMESTAMP@%$$date%" $(srcdir)/ltmain.in > ltmain.shT -- 2.47.3