You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by "Ralf S. Engelschall" <rs...@apache.org> on 1998/08/12 13:33:38 UTC

cvs commit: apache-1.3 Makefile.tmpl

rse         98/08/12 04:33:38

  Modified:    src      CHANGES
               .        Makefile.tmpl
  Log:
  Fix suexec installation under `make install root=xxx' situation.
  
  Revision  Changes    Path
  1.1022    +3 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1021
  retrieving revision 1.1022
  diff -u -r1.1021 -r1.1022
  --- CHANGES	1998/08/12 10:39:09	1.1021
  +++ CHANGES	1998/08/12 11:33:35	1.1022
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.2
   
  +  *) Fix suexec installation under `make install root=xxx' situation.
  +     [Ralf S. Engelschall]
  +
     *) Extend the output of the -V switch to include the paths of all
        compiled-in configuration files, if they were overridden at
        compile time, for least astonishment of the user.
  
  
  
  1.45      +4 -4      apache-1.3/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/Makefile.tmpl,v
  retrieving revision 1.44
  retrieving revision 1.45
  diff -u -r1.44 -r1.45
  --- Makefile.tmpl	1998/07/25 12:43:20	1.44
  +++ Makefile.tmpl	1998/08/12 11:33:37	1.45
  @@ -315,10 +315,10 @@
   	-@if [ ".$(suexec)" = .1 ]; then \
   	    echo "$(INSTALL_PROGRAM) $(TOP)/$(SRC)/support/suexec $(root)$(sbindir)/suexec"; \
   	    $(INSTALL_PROGRAM) $(TOP)/$(SRC)/support/suexec $(root)$(sbindir)/suexec; \
  -	    echo "chown root $(sbindir)/suexec"; \
  -	    chown root $(sbindir)/suexec; \
  -	    echo "chmod 4711 $(sbindir)/suexec"; \
  -	    chmod 4711 $(sbindir)/suexec; \
  +	    echo "chown root $(root)$(sbindir)/suexec"; \
  +	    chown root $(root)$(sbindir)/suexec; \
  +	    echo "chmod 4711 $(root)$(sbindir)/suexec"; \
  +	    chmod 4711 $(root)$(sbindir)/suexec; \
   	    echo "$(INSTALL_DATA) $(TOP)/$(SRC)/support/suexec.8 $(root)$(mandir)/man8/suexec.8"; \
   	    $(INSTALL_DATA) $(TOP)/$(SRC)/support/suexec.8 $(root)$(mandir)/man8/suexec.8; \
   	fi