sean Thu Sep 2 12:53:53 2004 EDT
Modified files:
/phpdoc Makefile.in
/phpdoc/scripts entities.php
Log:
fixed make entities (was pointing at scripts/entities.sh)
http://cvs.php.net/diff.php/phpdoc/Makefile.in?r1=1.151&r2=1.152&ty=u
Index: phpdoc/Makefile.in
diff -u phpdoc/Makefile.in:1.151 phpdoc/Makefile.in:1.152
--- phpdoc/Makefile.in:1.151 Tue Aug 24 03:53:48 2004
+++ phpdoc/Makefile.in Thu Sep 2 12:53:53 2004
@@ -16,7 +16,7 @@
#
#
-# $Id: Makefile.in,v 1.151 2004/08/24 07:53:48 betz Exp $
+# $Id: Makefile.in,v 1.152 2004/09/02 16:53:53 sean Exp $
#
all: html
@@ -71,7 +71,7 @@
@AUTOGENERATED_RULES@
entities: FORCE
- $(srcdir)/scripts/entities.sh
+ $(PHP) -c $(scriptdir) -q $(scriptdir)/entities.php
manual.xml: $(srcdir)/manual.xml.in .manual.xml
CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
http://cvs.php.net/diff.php/phpdoc/scripts/entities.php?r1=1.9&r2=1.10&ty=u
Index: phpdoc/scripts/entities.php
diff -u phpdoc/scripts/entities.php:1.9 phpdoc/scripts/entities.php:1.10
--- phpdoc/scripts/entities.php:1.9 Wed Aug 25 04:36:32 2004
+++ phpdoc/scripts/entities.php Thu Sep 2 12:53:53 2004
@@ -17,7 +17,7 @@
| Authors: Gabor Hojtsy <[EMAIL PROTECTED]> |
+----------------------------------------------------------------------+
- $Id: entities.php,v 1.9 2004/08/25 08:36:32 didou Exp $
+ $Id: entities.php,v 1.10 2004/09/02 16:53:53 sean Exp $
*/
if ($argc > 3 || in_array($argv[1], array('--help', '-help', '-h', '-?'))) {
@@ -45,7 +45,8 @@
}
// CONFIG SECTION
-$docdir = "../"; // Main directory of the PHP documentation (one dir up in cvs)
+// Main directory of the PHP documentation (one dir up in cvs)
+$docdir = dirname(realpath(__FILE__)) ."/../";
/*********************************************************************/
/* Nothing to modify below this line */