From: Andrew Innes Date: Mon, 5 Feb 2001 16:56:32 +0000 (+0000) Subject: ($(DOC)): Use $(THISDIR) instead of . in X-Git-Tag: emacs-pretest-21.0.98~162 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7a0952506fec785c0e90d6ac1afbc189fa616563;p=emacs.git ($(DOC)): Use $(THISDIR) instead of . in invocation of make-docfile, to work with Windows 2000. --- diff --git a/lib-src/makefile.w32-in b/lib-src/makefile.w32-in index e2e6f8df654..5ce47d41a3d 100644 --- a/lib-src/makefile.w32-in +++ b/lib-src/makefile.w32-in @@ -204,8 +204,8 @@ lisp= \ DOC = DOC $(DOC): $(BLD)/make-docfile.exe - $(DEL) $(DOC) - "./$(BLD)/make-docfile" -d ../src $(obj) > $(DOC) - "./$(BLD)/make-docfile" -d ../src $(lisp) >> $(DOC) + "$(THISDIR)/$(BLD)/make-docfile" -d ../src $(obj) > $(DOC) + "$(THISDIR)/$(BLD)/make-docfile" -d ../src $(lisp) >> $(DOC) $(CP) $(DOC) ../etc/DOC-X - mkdir "../src/$(OBJDIR)" - mkdir "../src/$(OBJDIR)/etc"