You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rb...@apache.org on 2001/09/14 04:41:04 UTC

cvs commit: apr-util configure.in

rbb         01/09/13 19:41:04

  Modified:    .        configure.in
  Log:
  When building VPATH, we have to create the include/private directory,
  or the builds will fail after the first configure.
  
  Revision  Changes    Path
  1.35      +5 -0      apr-util/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/apr-util/configure.in,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -u -r1.34 -r1.35
  --- configure.in	2001/08/31 09:47:53	1.34
  +++ configure.in	2001/09/14 02:41:04	1.35
  @@ -102,6 +102,11 @@
       test_Makefile="test/Makefile"
   fi
   
  +if test ! -d "$top_builddir/include/private"; then
  +    mkdir $top_builddir/include
  +    mkdir $top_builddir/include/private
  +fi
  +
   dnl
   dnl everthing is done. 
   MAKEFILES="Makefile buckets/Makefile crypto/Makefile dbm/Makefile dbm/sdbm/Makefile encoding/Makefile hooks/Makefile ldap/Makefile uri/Makefile xml/Makefile misc/Makefile $test_Makefile"