From 7a0952506fec785c0e90d6ac1afbc189fa616563 Mon Sep 17 00:00:00 2001 From: Andrew Innes Date: Mon, 5 Feb 2001 16:56:32 +0000 Subject: [PATCH] ($(DOC)): Use $(THISDIR) instead of . in invocation of make-docfile, to work with Windows 2000. --- lib-src/makefile.w32-in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" -- 2.39.5