You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by je...@apache.org on 2003/02/15 18:57:12 UTC

cvs commit: apr-util/build apu-conf.m4

jerenkrantz    2003/02/15 09:57:12

  Modified:    build    apu-conf.m4
  Log:
  Use correct quoting mechanism for APR_SUBDIR_CONFIG.
  
  Revision  Changes    Path
  1.52      +2 -2      apr-util/build/apu-conf.m4
  
  Index: apu-conf.m4
  ===================================================================
  RCS file: /home/cvs/apr-util/build/apu-conf.m4,v
  retrieving revision 1.51
  retrieving revision 1.52
  diff -u -u -r1.51 -r1.52
  --- apu-conf.m4	23 Jan 2003 08:47:07 -0000	1.51
  +++ apu-conf.m4	15 Feb 2003 17:57:12 -0000	1.52
  @@ -629,7 +629,7 @@
   dnl special-case the bundled distribution (use absolute dirs)
   if test "$expat_include_dir" = "xml/expat/lib" -o "$expat_include_dir" = "xml/expat-cvs/lib"; then
     bundled_subdir="`echo $expat_include_dir | sed -e 's%/lib%%'`"
  -  APR_SUBDIR_CONFIG($bundled_subdir, "--prefix=$prefix --exec-prefix=$exec_prefix --libdir=$libdir --includedir=$includedir --bindir=$bindir")
  +  APR_SUBDIR_CONFIG($bundled_subdir, [--prefix=$prefix --exec-prefix=$exec_prefix --libdir=$libdir --includedir=$includedir --bindir=$bindir])
     expat_include_dir=$top_builddir/$bundled_subdir/lib
     expat_ldflags="-L$top_builddir/$bundled_subdir/lib"
     expat_libs="-lexpat"
  @@ -641,7 +641,7 @@
     dnl This is a bit of a hack.  This only works because we know that
     dnl we are working with the bundled version of the software.
     bundled_subdir="xml/expat"
  -  APR_SUBDIR_CONFIG($bundled_subdir, "--prefix=$prefix --exec-prefix=$exec_prefix --libdir=$libdir --includedir=$includedir --bindir=$bindir")
  +  APR_SUBDIR_CONFIG($bundled_subdir, [--prefix=$prefix --exec-prefix=$exec_prefix --libdir=$libdir --includedir=$includedir --bindir=$bindir])
     expat_include_dir=$top_builddir/$bundled_subdir/lib
     expat_ldflags="-L$top_builddir/$bundled_subdir/lib"
     expat_libs="-lexpat"