From 4074a286823b1d5ae21957dd62e059cfd03a3c5d Mon Sep 17 00:00:00 2001 From: Joerg Wunsch Date: Fri, 1 Sep 2006 21:15:03 +0000 Subject: [PATCH] Add date and time of compilation to the verbose greeting message. Idea taken from patch #3172: Adds date and time of compile to usage message git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@642 81a1dc3b-b13d-400b-aceb-764788c761c2 --- avrdude/ChangeLog | 7 +++++++ avrdude/main.c | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/avrdude/ChangeLog b/avrdude/ChangeLog index e9730e98..4535ac7e 100644 --- a/avrdude/ChangeLog +++ b/avrdude/ChangeLog @@ -1,3 +1,10 @@ +2006-09-01 Joerg Wunsch + + * main.c: Add date and time of compilation to the verbose + greeting message. + Idea taken from patch #3172: Adds date and time of compile + to usage message + 2006-09-01 Joerg Wunsch Contributed by as diff --git a/avrdude/main.c b/avrdude/main.c index a29a2b6e..15f16aaf 100644 --- a/avrdude/main.c +++ b/avrdude/main.c @@ -946,9 +946,9 @@ int main(int argc, char * argv []) * they are running */ fprintf(stderr, - "\n%s: Version %s\n" + "\n%s: Version %s, compiled on %s at %s\n" "%sCopyright (c) 2000-2005 Brian Dean, http://www.bdmicro.com/\n\n", - progname, version, progbuf); + progname, version, __DATE__, __TIME__, progbuf); } if (verbose) {