Use correct directory structure for XEmacs on Windows.
authorKai Grossjohann <kgrossjo@eu.uu.net>
Fri, 19 Oct 2001 17:58:23 +0000 (17:58 +0000)
committerKai Grossjohann <kgrossjo@eu.uu.net>
Fri, 19 Oct 2001 17:58:23 +0000 (17:58 +0000)
ChangeLog
make-x.bat

index 437a119..b971581 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-19  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
+       From Frank Schmitt <ich@Frank-Schmitt.net>.
+       
+       * make-x.bat: Use correct directory structure for XEmacs on Windows.
+
 2001-10-06 08:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
 
        * Makefile.in (uninstall): Add.
index b2f2f97..ce347d2 100644 (file)
@@ -1,5 +1,6 @@
 @echo off\r
 \r
+rem Modified once more by Frank Schmitt (ich@Frank-Schmitt.net)\r
 rem Modified by ShengHuo Zhu (zsh@cs.rochester.edu)\r
 rem Originally from make.bat by David Charlap (shamino@writeme.com)\r
 rem\r
@@ -9,43 +10,41 @@ set GNUS_PWD_SAVE=%PWD%
 set PWD=\r
 \r
 if "%1" == "" goto usage\r
-if "%2" == "" goto usage\r
 \r
 set emacs=xemacs.exe\r
 \r
 cd lisp\r
-call %1\%2\%emacs% -batch -q -no-site-file -l ./dgnushack.el -f dgnushack-compile\r
-if not "%3" == "copy" goto info\r
-attrib -r %1\lisp\gnus\*\r
-copy *.el* %1\lisp\gnus\r
+call %1\%emacs% -batch -nw -q -no-site-file -l ./dgnushack.el -f dgnushack-compile\r
+if not "%2" == "copy" goto info\r
+attrib -r %1\..\..\xemacs-packages\lisp\gnus\*.*\r
+copy *.el* %1\..\..\xemacs-packages\lisp\gnus\r
 \r
 :info\r
-set EMACSINFO=call %1\%2\%emacs% -no-site-file -no-init-file -batch -q -l infohack.el -f batch-makeinfo\r
+set EMACSINFO=call %1\%emacs% -no-site-file -no-init-file -batch -nw -q -l infohack.el -f batch-makeinfo\r
 cd ..\texi\r
 %EMACSINFO% message.texi\r
 %EMACSINFO% emacs-mime.texi\r
 %EMACSINFO% gnus.texi\r
-if not "%3" == "copy" goto done\r
-copy gnus %1\info\r
-copy gnus-?? %1\info\r
-copy message %1\info\r
-copy emacs-mime %1\info\r
+if not "%2" == "copy" goto done\r
+copy gnus %1\..\..\xemacs-packages\info\r
+copy gnus-?? %1\..\..\xemacs-packages\info\r
+copy message %1\..\..\xemacs-packages\info\r
+copy emacs-mime %1\..\..\xemacs-packages\info\r
 \r
 :etc\r
 cd ..\etc\r
-copy gnus-tut.txt %1\etc\r
+copy gnus-tut.txt %1\..\..\xemacs-packages\etc\r
 \r
 :done\r
 cd ..\r
 goto end\r
 \r
 :usage\r
-echo Usage: make :xemacs-dir: :xemacs-arch: [copy]\r
+echo Usage: make :xemacs-dir: [copy]\r
 echo.\r
-echo where: :xemacs-dir: is the directory you installed xemacs in\r
-echo                    eg. C:\Progra~1\XEmacs\XEmacs-21.4.3\r
-echo        :xemacs-arch: is the xemacs architecture you installed\r
-echo                    eg. i586-pc-win32\r
+echo where: :xemacs-dir: is the directory you installed xemacs in \r
+echo                     (the directory where xemacs.exe is situated)\r
+echo                    eg. C:\Programme\XEmacs\XEmacs-21.4.3\i586-pc-win32\r
 echo        copy indicates that the compiled files should be copied to your\r
 echo             emacs lisp, info, and etc directories\r
 echo.\r