Mercurial > hg > xemacs-beta
changeset 5765:e88d026f3917
Include uname and configure arguments in stdout.
author | Stephen J. Turnbull <stephen@xemacs.org> |
---|---|
date | Sun, 15 Sep 2013 23:50:20 +0900 |
parents | 7addb3dbe4b4 |
children | 182d01410b8d |
files | configure configure.ac |
diffstat | 2 files changed, 25 insertions(+), 23 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Sun Sep 15 23:50:20 2013 +0900 +++ b/configure Sun Sep 15 23:50:20 2013 +0900 @@ -21503,15 +21503,6 @@ -( -if test -f /etc/osversion; then echo "osversion: `cat /etc/osversion`" -else - echo "uname -a: `uname -a`" -fi -echo "" -echo "$progname $ac_configure_args" -) > Installation - if test ! -z ${emacs_beta_version} ; then if test -z "${emacs_is_beta}" ; then xemacs_betaname=".${emacs_beta_version}" @@ -21522,7 +21513,17 @@ xemacs_betaname="" fi +echo "" +: > Installation + ( +if test -f /etc/osversion; then echo "osversion: `cat /etc/osversion`" +else + echo "uname -a: `uname -a`" +fi +echo "" +echo "$progname $ac_configure_args" + echo " XEmacs ${emacs_major_version}.${emacs_minor_version}${xemacs_betaname} \"$xemacs_codename\" $xemacs_extra_name configured for \`$ac_cv_build'."
--- a/configure.ac Sun Sep 15 23:50:20 2013 +0900 +++ b/configure.ac Sun Sep 15 23:50:20 2013 +0900 @@ -5660,6 +5660,20 @@ dnl #### We should tag this as the _build_ environment. dnl Before doing that, though, must check if tools care about line 1. +if test ! -z ${emacs_beta_version} ; then + if test -z "${emacs_is_beta}" ; then + xemacs_betaname=".${emacs_beta_version}" + else + xemacs_betaname="-b${emacs_beta_version}" + fi +else + xemacs_betaname="" +fi + +echo "" +: > Installation + +dnl Start stdout redirection to '| tee -a Installation' ( dnl /etc/osversion is on SONY NEWS-OS if test -f /etc/osversion; then dnl SONY NEWS-OS @@ -5669,20 +5683,7 @@ fi echo "" echo "$progname $ac_configure_args" -) > Installation - -if test ! -z ${emacs_beta_version} ; then - if test -z "${emacs_is_beta}" ; then - xemacs_betaname=".${emacs_beta_version}" - else - xemacs_betaname="-b${emacs_beta_version}" - fi -else - xemacs_betaname="" -fi - -dnl Start stdout redirection to '| tee -a Installation' -( + echo " XEmacs ${emacs_major_version}.${emacs_minor_version}${xemacs_betaname} \"$xemacs_codename\" $xemacs_extra_name configured for \`$ac_cv_build'."