emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

"nmake info" problem on Emacs HEAD


From: dhruva
Subject: "nmake info" problem on Emacs HEAD
Date: Fri, 19 Oct 2007 10:35:13 +0530

Hi,
 Building info files on M$ using MSVC fails. It is due to changing
directory from a wrong path. We need to change back to 'nt' folder
before changing to the respective info folder to build info files. The
following patch fixes it.

diff --git a/nt/makefile.w32-in b/nt/makefile.w32-in
index 155f201..b2a8862 100644
--- a/nt/makefile.w32-in
+++ b/nt/makefile.w32-in
@@ -240,12 +240,16 @@ info: force-info info-$(MAKETYPE)
 info-nmake:
        cd ..\doc\emacs
        $(MAKE) $(MFLAGS) info
+       @cd $(MAKEDIR)
        cd ..\doc\misc
        $(MAKE) $(MFLAGS) info
+       @cd $(MAKEDIR)
        cd ..\doc\lispref
        $(MAKE) $(MFLAGS) info
+       @cd $(MAKEDIR)
        cd ..\doc\lispintro
        $(MAKE) $(MFLAGS) info
+       @cd $(MAKEDIR)


-dky

-- 
Dhruva Krishnamurthy
Contents reflect my personal views only!




reply via email to

[Prev in Thread] Current Thread [Next in Thread]