diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | main.cxx | 7 |
2 files changed, 11 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2008-07-01 Frank Ch. Eigler <fche@elastic.org> + + * main.cxx (main): In -vv mode, also dump out session arch/release + values right at the top. + 2008-06-29 Tim Moore <timoore@redhat.com> * Makefile.am (EXTRA_DIST): Add auto_free.h. @@ -698,7 +698,12 @@ main (int argc, char * const argv []) // arguments parsed; get down to business if (s.verbose > 1) - version (); + { + version (); + clog << "Session arch: " << s.architecture + << " release: " << s.kernel_release + << endl; + } // Create a temporary directory to build within. // Be careful with this, as "s.tmpdir" is "rm -rf"'d at the end. |