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/04 21:09:58 UTC

cvs commit: httpd-2.0/support Makefile.in

rbb         01/10/04 12:09:58

  Modified:    support  Makefile.in
  Log:
  Make sure we install all of the support scripts.
  
  Revision  Changes    Path
  1.25      +6 -6      httpd-2.0/support/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/support/Makefile.in,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- Makefile.in	2001/09/28 04:19:39	1.24
  +++ Makefile.in	2001/10/04 19:09:58	1.25
  @@ -14,12 +14,12 @@
   install:
   	@test -d $(bindir) || $(MKINSTALLDIRS) $(bindir)
   	@cp -p $(top_builddir)/server/httpd.exp $(libexecdir)
  -	@cp -p apachectl $(sbindir)
  -	chmod 755 $(sbindir)/apachectl
  -	@if test -f $(builddir)/apxs; then \
  -	    cp -p apxs $(sbindir); \
  -	    chmod 755 $(sbindir)/apxs; \
  -	fi
  +	@for i in apachectl dbmmanage; do \
  +	    if test -f "$(builddir)/$$i"; then \
  +	        cp -p $$i $(sbindir); \
  +	        chmod 755 $(sbindir)/$$i; \
  +	    fi ; \
  +	done
   
   htpasswd_OBJECTS = htpasswd.lo
   htpasswd: $(htpasswd_OBJECTS)