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 2001/10/02 23:53:33 UTC

cvs commit: httpd-2.0 Makefile.in

rbb         01/10/02 14:53:33

  Modified:    .        Makefile.in
  Log:
  Suexec is compiled to the builddir, not the source dir.
  
  Revision  Changes    Path
  1.85      +1 -1      httpd-2.0/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/Makefile.in,v
  retrieving revision 1.84
  retrieving revision 1.85
  diff -u -r1.84 -r1.85
  --- Makefile.in	2001/09/18 15:02:19	1.84
  +++ Makefile.in	2001/10/02 21:53:33	1.85
  @@ -138,7 +138,7 @@
   install-suexec:
   	@if test -f $(builddir)/support/suexec; then \
               test -d $(sbindir) || $(MKINSTALLDIRS) $(sbindir); \
  -            $(INSTALL_PROGRAM) $(srcdir)/support/suexec $(sbindir); \
  +            $(INSTALL_PROGRAM) $(top_builddir)/support/suexec $(sbindir); \
               chmod 4755 $(sbindir)/suexec; \
   	fi