You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Greg Stein <gs...@lyra.org> on 2001/01/11 21:04:43 UTC

Re: cvs commit: httpd-2.0/build fastgen.sh

That probably is the wrong approach. The fastgen.sh stuff is to deal with
VPATH builds (building outside the source dir). You can put these values
into config_vars.mk by using APACHE_SUBST on their value. config_vars.mk
gets into all makefiles.

Cheers,
-g

On Thu, Jan 11, 2001 at 07:48:41PM -0000, jim@apache.org wrote:
> jim         01/01/11 11:48:41
> 
>   Modified:    build    fastgen.sh
>   Log:
>   My bad... don't need the quotes here
>   
>   Revision  Changes    Path
>   1.14      +4 -4      httpd-2.0/build/fastgen.sh
>   
>   Index: fastgen.sh
>   ===================================================================
>   RCS file: /home/cvs/httpd-2.0/build/fastgen.sh,v
>   retrieving revision 1.13
>   retrieving revision 1.14
>   diff -u -r1.13 -r1.14
>   --- fastgen.sh	2001/01/11 19:44:48	1.13
>   +++ fastgen.sh	2001/01/11 19:48:38	1.14
>   @@ -87,8 +87,8 @@
>    srcdir       = $top_srcdir/$dir
>    builddir     = $top_builddir/$dir
>    VPATH        = $top_srcdir/$dir
>   -NONAC_CFLAGS  = "$NONAC_CFLAGS"
>   -NONAC_LDFLAGS = "$NONAC_LDFLAGS"
>   +NONAC_CFLAGS  = $NONAC_CFLAGS
>   +NONAC_LDFLAGS = $NONAC_LDFLAGS
>    EOF
>        
>        test -z "$dir" && dir="."
>   @@ -106,8 +106,8 @@
>    srcdir       = $top_srcdir/$dir
>    builddir     = $top_builddir/$dir
>    VPATH        = $top_srcdir/$dir
>   -NONAC_CFLAGS  = "$NONAC_CFLAGS"
>   -NONAC_LDFLAGS = "$NONAC_LDFLAGS"
>   +NONAC_CFLAGS  = $NONAC_CFLAGS
>   +NONAC_LDFLAGS = $NONAC_LDFLAGS
>    EOF
>      
>        test -z "$dir" && dir="."
>   
>   
>   

-- 
Greg Stein, http://www.lyra.org/