From xemacs-m  Fri Mar 28 20:00:15 1997
Received: from mecca.spd.louisville.edu (mecca.spd.louisville.edu [136.165.40.148])
	by xemacs.org (8.8.5/8.8.5) with SMTP id UAA13672
	for <xemacs-beta@xemacs.org>; Fri, 28 Mar 1997 20:00:14 -0600 (CST)
Received: (from tjchol01@localhost) by mecca.spd.louisville.edu (950413.SGI.8.6.12/950213.SGI.AUTOCF) id VAA18800; Fri, 28 Mar 1997 21:00:24 -0500
Date: Fri, 28 Mar 1997 21:00:24 -0500
Message-Id: <199703290200.VAA18800@mecca.spd.louisville.edu>
From: "Tomasz J. Cholewo" <tjchol01@mecca.spd.louisville.edu>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
To: XEmacs-Beta Mailing List <xemacs-beta@xemacs.org>
CC: Neal Becker <neal@ctd.comsat.com>
Subject: [patchlet] Re: more configure crud?
In-Reply-To: <u9end0oylf.fsf@neal.ctd.comsat.com>
X-Mailer: VM 6.22 under 20.1 XEmacs Lucid (beta10)

Neal Becker wrote:
>  | tee -a Installation

Hmmm.  It is intentional and was meant as a reminder that the configure
report is being appended to the `Installation' file.  It is modeled
after

 >> Installation

message line from 20.1-b9.  I agree that it looks cryptic and somewhat
suggests that configure guts just got spilled over.  The following patch
changes the message and makes configure store the output of 'uname -a'
in Installation file.

Tom

--- xemacs-20.1-b10-orig/configure.in	Thu Mar 27 21:27:59 1997
+++ xemacs-20.1-b10/configure.in	Fri Mar 28 20:55:29 1997
@@ -2106,7 +2106,6 @@
 
 #### Add the libraries to LIBS and check for some functions.
 
-]
 CPPFLAGS="${C_SWITCH_SITE} $c_switch_system $c_switch_machine $c_switch_x_system $CPPFLAGS"
 DEFS="${C_SWITCH_SITE} $c_switch_system $c_switch_machine $c_switch_x_system $DEFS"
 LIBS="${LD_SWITCH_SITE} $ld_switch_x_system $libsrc_libs $LIBS"
@@ -3203,7 +3202,11 @@
 dnl #                     Report on what we decided to do                      #
 dnl ############################################################################
 
-echo "$0 $configure_args" >> Installation
+(
+echo "uname -a: `uname -a`" 
+echo "" 
+echo "$0 $configure_args" 
+) >> Installation
 # Start stdout redirection to '| tee -a Installation'
 (
 echo "
@@ -3301,9 +3304,11 @@
 test "${debug}"              = yes && echo "  Compiling in extra code for debugging."
 test "${memory_usage_stats}" = yes && echo "  Compiling in code for checking XEmacs memory usage."
 test "$usage_tracking"       = yes && echo "  Compiling with usage tracking active (Sun internal)."
+echo ""
 ) | tee -a Installation
-echo " | tee -a Installation
-"
+echo 'The above configure report is appended to "Installation" file.'
+echo ""
+
 dnl ############################################################################
 dnl #                                Now generate!                             #
 dnl ############################################################################

