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/07/05 07:25:20 UTC

cvs commit: httpd-2.0 Makefile.in acinclude.m4

rbb         01/07/04 22:25:20

  Modified:    .        Makefile.in acinclude.m4
  Log:
  install the man pages when we install everything else.
  PR:	7754
  
  Revision  Changes    Path
  1.73      +9 -1      httpd-2.0/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/Makefile.in,v
  retrieving revision 1.72
  retrieving revision 1.73
  diff -u -d -b -w -u -r1.72 -r1.73
  --- Makefile.in	2001/05/28 15:32:49	1.72
  +++ Makefile.in	2001/07/05 05:25:19	1.73
  @@ -17,7 +17,7 @@
   TARGETS         = $(PROGRAMS) $(shared_build) $(other_targets)
   PHONY_TARGETS   = $(srcdir)/buildmark.c
   INSTALL_TARGETS = install-conf install-htdocs install-icons install-other \
  -	install-cgi install-include install-suexec
  +	install-cgi install-include install-suexec install-man
   
   DISTCLEAN_TARGETS  = include/ap_config_auto.h include/ap_config_path.h \
   	modules.c config.cache config.log config.status config_vars.mk
  @@ -105,6 +105,14 @@
   	@cp -p $(srcdir)/srclib/apr-util/include/*.h $(includedir)
   	@cp -p $(srcdir)/os/$(OS_DIR)/*.h $(includedir)
   	@chmod 644 $(includedir)/*.h
  +
  +install-man:
  +	@echo Installing man pages
  +	@test -d $(mandir)      || $(MKINSTALLDIRS) $(mandir)
  +	@test -d $(mandir)/man1 || $(MKINSTALLDIRS) $(mandir)/man1
  +	@test -d $(mandir)/man8 || $(MKINSTALLDIRS) $(mandir)/man8
  +	@cp -p docs/man/*.1 $(mandir)/man1
  +	@cp -p docs/man/*.8 $(mandir)/man8
   
   install-suexec:
   	@if test -f $(builddir)/support/suexec; then \
  
  
  
  1.89      +2 -0      httpd-2.0/acinclude.m4
  
  Index: acinclude.m4
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/acinclude.m4,v
  retrieving revision 1.88
  retrieving revision 1.89
  diff -u -d -b -w -u -r1.88 -r1.89
  --- acinclude.m4	2001/05/18 00:48:56	1.88
  +++ acinclude.m4	2001/07/05 05:25:19	1.89
  @@ -39,6 +39,7 @@
     APACHE_SUBST(exec_prefix)
     APACHE_SUBST(datadir)
     APACHE_SUBST(localstatedir)
  +  APACHE_SUBST(mandir)
     APACHE_SUBST(libexecdir)
     APACHE_SUBST(htdocsdir)
     APACHE_SUBST(includedir)
  @@ -301,6 +302,7 @@
     logfiledir='$(prefix)/logs'
     sysconfdir='${prefix}/conf'
     libexecdir='${prefix}/modules'
  +  mandir='${prefix}/man'
     layout_name=Apache
   else 
     APACHE_LAYOUT($srcdir/config.layout, $LAYOUT)