From xemacs-m  Mon Apr  7 10:19:35 1997
Received: from master.control.att.com ([135.205.52.13])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id KAA29421
	for <xemacs-beta@xemacs.org>; Mon, 7 Apr 1997 10:19:35 -0500 (CDT)
Received: from i.control.att.com by master.control.att.com with esmtp
	(Smail3.1.29.1 #3) id m0wEGCH-002iwyC; Mon, 7 Apr 97 11:19 EDT
Received: by i.control.att.com (Smail3.1.29.1 #1)
	id m0wEGCH-000mUTC; Mon, 7 Apr 97 11:19 EDT
Message-Id: <m0wEGCH-000mUTC@i.control.att.com>
Date: Mon, 7 Apr 97 11:19 EDT
From: Larry Auton <lda@control.att.com>
To: xemacs-beta@xemacs.org
Subject: minor patch to configure
X-Mailer: VM 6.23 under 20.1 XEmacs Lucid (beta11)
Mime-Version: 1.0 (generated by tm-edit 7.106)
Content-Type: text/plain; charset=US-ASCII

I noticed that ``configure'' left a core file on one of my Solaris 2.4
boxes.  I tracked it to one of the ``conftest'' programs.

A comment in the code notes that the program may drop core on Solaris, so
"it's not a bug but a feature" of the test.  This little patch will remove
the core file that the test produces.

-lda
----

--- ORGconfigure	Sat Apr  5 13:06:59 1997
+++ configure	Mon Apr  7 10:02:58 1997
@@ -5186,7 +5186,7 @@
 }
 
 fi
-rm -fr conftest*
+rm -fr core conftest*
 
 
 # Check whether mmap exists and works correctly. (This does more

