You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by dr...@locus.apache.org on 2000/09/24 14:40:06 UTC

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