From 4753302d3c4ee91f2bc4eaf1cd7cdf85ab6e5f5f Mon Sep 17 00:00:00 2001 From: thib Date: Fri, 4 Jan 2002 18:02:06 +0000 Subject: [PATCH] do a "cd .." before making the ci-ing in make tar, because it makes appear the file path during the ci-ing --- doc/Makefile.in | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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 {} \;) -- 2.40.0