id, date and host to be overriden by NAME, ID, DATE and HOST
respectfully. Use ISO dates.
+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.
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 \