Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 73430 invoked by uid 500); 24 Sep 2000 12:40:08 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 73418 invoked by uid 500); 24 Sep 2000 12:40:07 -0000 Delivered-To: apmail-apache-2.0-cvs@apache.org Date: 24 Sep 2000 12:40:06 -0000 Message-ID: <20000924124006.73413.qmail@locus.apache.org> From: dreid@locus.apache.org To: apache-2.0-cvs@apache.org Subject: cvs commit: apache-2.0/src buildconf dreid 00/09/24 05:40:05 Modified: src buildconf Log: We don't have config.guess until later in the build cycle, so change the test to use uname. with this change a clean CVS copy will build using ./buildconf;./configure;make exactly like it should. Thanks Sascha. Revision Changes Path 1.19 +2 -2 apache-2.0/src/buildconf Index: buildconf =================================================================== RCS file: /home/cvs/apache-2.0/src/buildconf,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- buildconf 2000/09/22 17:07:45 1.18 +++ buildconf 2000/09/24 12:40:05 1.19 @@ -5,8 +5,8 @@ rm -f generated_lists -case "`./config.guess`" in -*bsdi*) +case "`uname`" in +*BSD/OS*) ./build/bsd_makefile;; esac