From: thib Date: Fri, 4 Jan 2002 18:02:06 +0000 (+0000) Subject: do a "cd .." before making the ci-ing in make tar, because it makes appear the file... X-Git-Tag: ver1564~141 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4753302d3c4ee91f2bc4eaf1cd7cdf85ab6e5f5f;p=fcron do a "cd .." before making the ci-ing in make tar, because it makes appear the file path during the ci-ing --- diff --git a/doc/Makefile.in b/doc/Makefile.in index 4b080cd..0d3a49e 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -4,7 +4,7 @@ # @configure_input@ -# $Id: Makefile.in,v 1.4 2002-01-03 22:39:50 thib Exp $ +# $Id: Makefile.in,v 1.5 2002-01-04 18:02:06 thib Exp $ # The following should not be edited manually (use configure options) # If you must do it, BEWARE : some of the following is also defined @@ -47,7 +47,7 @@ all: doc doc: HTML/index.html -mandoc: HTML/index.html +mandoc: @(if test \( ! -f $(DB2MAN_SPEC) \) -o \( ! -x $(NSGMLS) \) -o \( ! -x $(SGMLSPL) \); then \ echo "ERROR: cannot generate man pages." ; \ echo " Please check if nsgmls, sgmlspl are installed, and " ; \ @@ -147,6 +147,8 @@ vclean: clean rm -f HTML/* man/* txt/* tar: doc tarclean - @(find ./ -type f ! -regex '.*RCS.*' ! -regex "$(RCSNOCI)" \ +# we run a "cd .." because it makes appear the path of the file ( ./doc/XXXX ) +# during the ci-ing + @(cd ..; find ./doc/ -type f ! -regex '.*RCS.*' ! -regex "$(RCSNOCI)" \ -exec ci -l {} \;)