diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-06-16 15:59:34 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-06-16 15:59:34 +0000 |
commit | 97277333c7541546c70440c536125cc1a87fbd03 (patch) | |
tree | f44ea382a6dec9084961fd3e66b7ee7bb30d3b61 /sim | |
parent | 636f45388c97a28a99e7e74d32a91d5007aab9b4 (diff) | |
download | gdb-97277333c7541546c70440c536125cc1a87fbd03.tar.gz |
* Makefile.in (autoconf-changelog autoheader-changelog): Let name,
id, date and host to be overriden by NAME, ID, DATE and HOST
respectfully. Use ISO dates.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/ChangeLog | 6 | ||||
-rw-r--r-- | sim/Makefile.in | 12 |
2 files changed, 14 insertions, 4 deletions
diff --git a/sim/ChangeLog b/sim/ChangeLog index 2a1bb25790a..a9f73ae3704 100644 --- a/sim/ChangeLog +++ b/sim/ChangeLog @@ -1,3 +1,9 @@ +2002-06-16 Andrew Cagney <ac131313@redhat.com> + + * Makefile.in (autoconf-changelog autoheader-changelog): Let name, + id, date and host to be overriden by NAME, ID, DATE and HOST + respectfully. Use ISO dates. + Thu Jun 6 12:34:13 2002 Andrew Cagney <cagney@redhat.com> * Makefile.in (ChangeLog): New makefile variable. diff --git a/sim/Makefile.in b/sim/Makefile.in index aebdab3b2ab..9a044f06043 100644 --- a/sim/Makefile.in +++ b/sim/Makefile.in @@ -224,10 +224,14 @@ autoconf-common autoheader-common: done autoconf-changelog autoheader-changelog: - id="`id | sed -e 's/^[^(]*(\([^)]*\).*$$/\1/'`" ; \ - name=`grep "^$$id:" /etc/passwd | cut -f 5 -d ':'` ; \ - host="`hostname`" ; \ - date="`date | sed 's/ [^ ]* \([0-9]*\)$$/ \1/'`" ; \ + id=$(ID) ; \ + test x$$id = x && id="`id | sed -e 's/^[^(]*(\([^)]*\).*$$/\1/'`" ; \ + name=$(NAME) ; \ + test x$$name = x && name=`grep "^$$id:" /etc/passwd | cut -f 5 -d ':'` ; \ + host=$(HOST) ; \ + test x$$host = x && host="`hostname`" ; \ + date=$(DATE) ; \ + test x$$date = x && date="`date +%Y-%m-%d`" ; \ echo "$$date $$name $$id@$$host" ; \ for d in * ; \ do \ |