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/01/21 18:39:17 UTC

cvs commit: httpd-2.0 Makefile.in

rbb         01/01/21 09:39:17

  Modified:    .        Makefile.in
  Log:
  Fix a small bug that was making us create a directory called "-p" in the
  build directory.
  
  Revision  Changes    Path
  1.54      +1 -1      httpd-2.0/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/Makefile.in,v
  retrieving revision 1.53
  retrieving revision 1.54
  diff -u -d -b -w -u -r1.53 -r1.54
  --- Makefile.in	2001/01/21 17:22:16	1.53
  +++ Makefile.in	2001/01/21 17:39:16	1.54
  @@ -115,7 +115,7 @@
   
   install-suexec:
   	@if test -f $(builddir)/support/suexec; then \
  -	    $(MKINSTALLDIRS) -p $(bindir)/sbin; \
  +	    $(MKINSTALLDIRS) $(bindir)/sbin; \
   	    cp -p $(srcdir)/support/suexec $(bindir)/sbin; \
   	fi