You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by je...@apache.org on 2002/03/26 20:43:46 UTC

cvs commit: httpd-2.0 CHANGES acinclude.m4

jerenkrantz    02/03/26 11:43:46

  Modified:    .        CHANGES acinclude.m4
  Log:
  Ensure that the build directory is created when using VPATH.
  
  Previously, configure would try to write config_vars.mk into build
  without ensuring that that directory existed first.
  
  Revision  Changes    Path
  1.658     +3 -0      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.657
  retrieving revision 1.658
  diff -u -r1.657 -r1.658
  --- CHANGES	26 Mar 2002 18:41:14 -0000	1.657
  +++ CHANGES	26 Mar 2002 19:43:46 -0000	1.658
  @@ -1,5 +1,8 @@
   Changes with Apache 2.0.34-dev
   
  +  *) Ensure that the build/ directory is created when using VPATH.
  +     [Justin Erenkrantz]
  +
     *) Add some popular types to the mime magic file.  PR 7730.
        [Linus Walleij <tr...@df.lth.se>, Justin Erenkrantz]
   
  
  
  
  1.120     +6 -0      httpd-2.0/acinclude.m4
  
  Index: acinclude.m4
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/acinclude.m4,v
  retrieving revision 1.119
  retrieving revision 1.120
  diff -u -r1.119 -r1.120
  --- acinclude.m4	21 Mar 2002 19:40:06 -0000	1.119
  +++ acinclude.m4	26 Mar 2002 19:43:46 -0000	1.120
  @@ -105,6 +105,12 @@
   
     APACHE_MKDIR_P_CHECK
     echo creating config_vars.mk
  +  if test "$ac_cv_mkdir_p" = "yes"; then
  +    mkdir_p="mkdir -p"
  +  else
  +    mkdir_p="$top_srcdir/build/mkdir.sh"
  +  fi
  +  test -d build || $mkdir_p build
     > build/config_vars.mk
     for i in $APACHE_VAR_SUBST; do
       eval echo "$i = \$$i" >> build/config_vars.mk