rquadling               Mon Feb  5 11:55:44 2007 UTC

  Modified files:              
    /phpdoc/chm make_chm.bat 
  Log:
  Make chm calls make_chm.bat $(LANG).
  $(LANG) expands to:
  
  en -D .
  
  So, %2 param is never going to be "normal", so moving it to param 4.
  
  This is in conjunction with the make chm_normal rule in makefile.in
  
  
http://cvs.php.net/viewvc.cgi/phpdoc/chm/make_chm.bat?r1=1.3&r2=1.4&diff_format=u
Index: phpdoc/chm/make_chm.bat
diff -u phpdoc/chm/make_chm.bat:1.3 phpdoc/chm/make_chm.bat:1.4
--- phpdoc/chm/make_chm.bat:1.3 Sun Jul 10 17:34:59 2005
+++ phpdoc/chm/make_chm.bat     Mon Feb  5 11:55:44 2007
@@ -26,7 +26,8 @@
 
 echo Language choosen: %PHP_HELP_COMPILE_LANG%
 
-if a%2a == anormala goto skipfancy
+REM %1 = en, %2 = -D %3 = . %4 = normal
+if a%4a == anormala goto skipfancy
 
 echo Now generating the fancy manual in %PHP_HELP_COMPILE_FANCYDIR% dir...
 IF NOT EXIST %PHP_HELP_COMPILE_FANCYDIR%\NUL md %PHP_HELP_COMPILE_FANCYDIR%

Reply via email to