diff --git a/bochs/doc/docbook/Makefile.in b/bochs/doc/docbook/Makefile.in index 088a3b5f6..e746b51e7 100644 --- a/bochs/doc/docbook/Makefile.in +++ b/bochs/doc/docbook/Makefile.in @@ -1,6 +1,6 @@ ################################################################### # doc/docbook/Makefile -# $Id: Makefile.in,v 1.16 2003-12-07 23:36:58 cbothamy Exp $ +# $Id: Makefile.in,v 1.17 2004-01-08 22:27:07 cbothamy Exp $ # # Builds documentation in various formats from SGML source, and # allows easy update to the Bochs web site. @@ -69,12 +69,12 @@ copy_from_srcdir:: $(TARGZ): all copy_from_srcdir fixperm rm -f $(TARGZ) - tar cf - $(INSTALL_LIST) --exclude=CVS --exclude=*.dbk | gzip > $(TARGZ) + tar cf - $(INSTALL_LIST) --exclude=CVS --exclude=.cvsignore --exclude=*.dbk | gzip > $(TARGZ) install: all copy_from_srcdir for i in $(DESTDIR)$(docdir); do if test ! -d $$i; then mkdir -p $$i; fi; done #for i in $(INSTALL_LIST); do cp -r $$i $(DESTDIR)$(docdir); done - for i in $(INSTALL_LIST); do tar cf - --exclude=CVS $$i | ( cd $(DESTDIR)$(docdir); tar xf - ); done + for i in $(INSTALL_LIST); do tar cf - --exclude=CVS --exclude=.cvsignore --exclude=*.dbk $$i | ( cd $(DESTDIR)$(docdir); tar xf - ); done test_sfuser: @if test "$$SFUSER" = ""; then SFUSER=`whoami`; export SFUSER; fi; \