You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2002/04/05 21:36:06 UTC

cvs commit: httpd-2.0 Makefile.in

rbb         02/04/05 11:36:06

  Modified:    .        Makefile.in
  Log:
  With VPATH builds, the httpd.conf-std file is found in the build directory,
  not the source directory.  Make sure we check both from now on.
  
  Revision  Changes    Path
  1.105     +3 -0      httpd-2.0/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/Makefile.in,v
  retrieving revision 1.104
  retrieving revision 1.105
  diff -u -r1.104 -r1.105
  --- Makefile.in	4 Apr 2002 09:15:43 -0000	1.104
  +++ Makefile.in	5 Apr 2002 19:36:06 -0000	1.105
  @@ -35,6 +35,8 @@
   	for i in mime.types magic; do \
   		$(INSTALL_DATA) $$i $(sysconfdir); \
   	done; \
  +	for j in $(top_srcdir)/docs/conf $(top_builddir)/docs/conf ; do \
  +		cd $$j ; \
   	for i in *-std* ssl.conf; do \
   		[ -f $$i ] || continue; \
   		( \
  @@ -76,6 +78,7 @@
   		if test "$$file" != "$$i" && test ! -f $(sysconfdir)/$$file; then \
   			$(INSTALL_DATA) $(sysconfdir)/$$i $(sysconfdir)/$$file; \
   		fi; \
  +	done ; \
   	done
   	@if test -f "$(builddir)/envvars-std"; then \
   	    cp -p envvars-std $(sbindir); \
  
  
  

RE: cvs commit: httpd-2.0 Makefile.in

Posted by Ryan Bloom <rb...@covalent.net>.
> rbb         02/04/05 11:36:06
> 
>   Modified:    .        Makefile.in
>   Log:
>   With VPATH builds, the httpd.conf-std file is found in the build
> directory,
>   not the source directory.  Make sure we check both from now on.

This solves Doug's VPATH install problem.

Ryan

 


RE: cvs commit: httpd-2.0 Makefile.in

Posted by Ryan Bloom <rb...@covalent.net>.
> rbb         02/04/05 11:36:06
> 
>   Modified:    .        Makefile.in
>   Log:
>   With VPATH builds, the httpd.conf-std file is found in the build
> directory,
>   not the source directory.  Make sure we check both from now on.

This solves Doug's VPATH install problem.

Ryan