From xemacs-m  Fri Aug  1 02:16:23 1997
Received: from altair.xemacs.org (steve@xemacs.miranova.com [206.190.83.19])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id CAA23527
	for <xemacs-beta@xemacs.org>; Fri, 1 Aug 1997 02:16:21 -0500 (CDT)
Received: (from steve@localhost)
	by altair.xemacs.org (8.8.6/8.8.6) id AAA15168;
	Fri, 1 Aug 1997 00:20:37 -0700
Mail-Copies-To: never
To: xemacs-beta@xemacs.org
Subject: [PATCH] Re: [Failure] XEmacs 20.3-beta16 "Budapest" (config.values)
References: <m2sowu79u9.fsf@altair.xemacs.org> 	<19970801151943V.furutaka@Flux.tokai.jaeri.go.jp> 	<m2k9i676of.fsf@altair.xemacs.org> <9708010901.aa22608@uklirb.informatik.uni-kl.de>
X-Face: `'%\i;ySOu]g?NlziJSk_$&@]KP`}~PEQPjZ5;nxSaDW_o$4+4%Ab]%Ifw3ZR;7TIT3,O,'
 @2{L;]ox6kc;$_5kU'n**9vFg-]eV~GbxSVCx|(s%uR[],*:^WKmC`B}(;|k9/m]gwt?&`t;^rfCJg
 khHH>pP1W\)xM0U@!FNDD72{3fDP$PkBhx^7Z?-WxH6DbFN:QOnT`llzW}VGdYv;n9lzljQvKTIBhQ
 YuV
X-Attribution: sb
From: SL Baur <steve@xemacs.org>
In-Reply-To: Andreas Jaeger's message of "1 Aug 1997 08:51:39 +0200"
Mime-Version: 1.0 (generated by tm-edit 7.108)
Content-Type: text/plain; charset=US-ASCII
Date: 01 Aug 1997 00:20:36 -0700
Message-ID: <m2en8e74jf.fsf_-_@altair.xemacs.org>
Lines: 43
X-Mailer: Gnus v5.4.64/XEmacs 20.3(beta17) - "Bucharest"

Andreas Jaeger <jaeger@informatik.uni-kl.de> writes:

> The problem is that make beta clean config.values.:-(

I see.  I arranged for config.values to go away after `make distclean' 
(so my environment doesn't corrupt the full source tarballs), but
it does not look like it is correct for it to be removed after a `make
clean'.

> Another ./config.status --recheck run created config.values and now
> I'm waiting for the compilation to finish.

I screwed up.  Here is a patch to fix it.

1997-08-01  SL Baur  <steve@altair.xemacs.org>

	* Makefile.in.in (distclean): Remove config.values here only.

Index: lib-src/Makefile.in.in
===================================================================
RCS file: /usr/local/xemacs/xemacs-20.0/lib-src/Makefile.in.in,v
retrieving revision 1.21
diff -u -r1.21 Makefile.in.in
--- Makefile.in.in	1997/08/01 03:27:46	1.21
+++ Makefile.in.in	1997/08/01 07:18:19
@@ -67,7 +67,7 @@
 ## which should not be installed in bindir.
 UTILITIES= make-path wakeup profile make-docfile digest-doc \
 	sorted-doc movemail cvtmail fakemail yow hexl \
-	gnuserv mmencode config.values
+	gnuserv mmencode
 ## These need to be conditional on I18N3 make-msgfile make-po
 
 ## Like UTILITIES, but they are not system-dependent, and should not be
@@ -237,7 +237,7 @@
 	$(RM) ${INSTALLABLES} ${UTILITIES}
 distclean: clean
 	$(RM) DOC *.tab.c *.tab.h aixcc.c TAGS
-	$(RM) Makefile Makefile.in blessmail
+	$(RM) Makefile Makefile.in blessmail config.values
 realclean: distclean
 extraclean: distclean
 	$(RM) *~ \#*

