Chris Browne cbbrowne at lists.slony.info
Fri Feb 20 07:47:08 PST 2009
Update of /home/cvsd/slony1/slony1-engine/doc/adminguide
In directory main.slony.info:/tmp/cvs-serv27161

Modified Files:
      Tag: REL_2_0_STABLE
	Makefile 
Log Message:
Fix rules for building man pages to install the pages en masse rather than
one by one (as done by PostgreSQL), since one-by-one was breaking due to
some of the names containing spaces.


Index: Makefile
===================================================================
RCS file: /home/cvsd/slony1/slony1-engine/doc/adminguide/Makefile,v
retrieving revision 1.20
retrieving revision 1.20.2.1
diff -C2 -d -r1.20 -r1.20.2.1
*** Makefile	25 Feb 2008 15:37:58 -0000	1.20
--- Makefile	20 Feb 2009 15:47:06 -0000	1.20.2.1
***************
*** 75,86 ****
  install: installdirs
  ifdef docdir
! 	for file in $(wildcard $(srcdir)/*.sgml) ; do \
! 	  $(INSTALL_DATA) $$file $(DESTDIR)$(docdir)/sgml || exit; \
! 	done
! 	for file in $(wildcard man1/*) ; do \
! 	   $(INSTALL_DATA) $$file $(DESTDIR)$(mandir)/man1 || exit;\
  	done
! 	for file in $(wildcard man7/*) ; do \
! 	  $(INSTALL_DATA) $$file $(DESTDIR)$(mandir)/man7 || exit;\
  	done
  	for file in $(wildcard *.html) stylesheet.css ; do \
--- 75,84 ----
  install: installdirs
  ifdef docdir
! 	for file in man1/*.1; do \
! 	   $(INSTALL_DATA) $$file $(DESTDIR)$(mandir)/man1/$$file || exit;\
  	done
! 	for file in man7/*.7; do \
! 	   echo $$file \
! 	   $(INSTALL_DATA) $$file $(DESTDIR)$(mandir)/man7/$$file || exit;\
  	done
  	for file in $(wildcard *.html) stylesheet.css ; do \



More information about the Slony1-commit mailing list