You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@locus.apache.org on 2000/04/13 21:08:25 UTC

cvs commit: apache-1.3 Makefile.tmpl

coar        00/04/13 12:08:25

  Modified:    .        Makefile.tmpl
  Log:
  	Fix a stoopid buglet that caused a space to be included in
  	the source filename if the suexec_umask value wasn't set.
  
  PR:		4030
  Submitted by:	Chris Bongaarts <ca...@tc.umn.edu>
  Reviewed by:	Ken Coar
  
  Revision  Changes    Path
  1.96      +2 -2      apache-1.3/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===================================================================
  RCS file: /home/cvs/apache-1.3/Makefile.tmpl,v
  retrieving revision 1.95
  retrieving revision 1.96
  diff -u -r1.95 -r1.96
  --- Makefile.tmpl	2000/01/11 19:47:41	1.95
  +++ Makefile.tmpl	2000/04/13 19:08:25	1.96
  @@ -195,14 +195,14 @@
   	if [ ".$(suexec)" = .1 ]; then \
   	    $(MAKE) $(MFLAGS) \
   		EXTRA_CFLAGS='\
  +			$(suexec_umask) \
   			-DHTTPD_USER=\"$(suexec_caller)\" \
   			-DUID_MIN=$(suexec_uidmin) \
   			-DGID_MIN=$(suexec_gidmin) \
   			-DUSERDIR_SUFFIX=\"$(suexec_userdir)\" \
   			-DLOG_EXEC=\"$(suexec_logexec)\" \
   			-DDOC_ROOT=\"$(suexec_docroot)\" \
  -			-DSAFE_PATH=\"$(suexec_safepath)\" \
  -			$(suexec_umask)' \
  +			-DSAFE_PATH=\"$(suexec_safepath)\"' \
   		suexec; \
   	fi
   	@echo "<=== $(SRC)/support"