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 | 3832c25c185d324f411ab880aab6b1e5e17f23f6 (patch) | |
tree | ab4dfeba91b565e8aee0bf80dc5330fde19698e1 /sim/Makefile.in | |
parent | b6197528ed31667d632e5643728a2aa2c0f680f9 (diff) | |
download | gdb-3832c25c185d324f411ab880aab6b1e5e17f23f6.zip gdb-3832c25c185d324f411ab880aab6b1e5e17f23f6.tar.gz gdb-3832c25c185d324f411ab880aab6b1e5e17f23f6.tar.bz2 |
* 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/Makefile.in')
-rw-r--r-- | sim/Makefile.in | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/sim/Makefile.in b/sim/Makefile.in index aebdab3..9a044f0 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 \ |