Changeset da402d6 in github for bin/makedoc.sh
- Timestamp:
- Oct 7, 2008 9:52:39 AM (5 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- a22cb65
- Parents:
- 27a12ed
- File:
-
- 1 edited
-
bin/makedoc.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bin/makedoc.sh
r6d969b4 rda402d6 4 4 PACKAGES="Core" 5 5 6 PATH_PROJECT=$PWD/program/include 7 PATH_DOCS=$PWD/doc/phpdoc 8 PATH_PHPDOC=/usr/local/php5/bin/phpdoc 6 INSTALL_PATH="`dirname $0`/.." 7 PATH_PROJECT=$INSTALL_PATH/program/include 8 PATH_DOCS=$INSTALL_PATH/doc/phpdoc 9 10 if [ -x /usr/local/php5/bin/phpdoc ] 11 then 12 PATH_PHPDOC=/usr/local/php5/bin/phpdoc 13 elif [ -x /usr/bin/phpdoc ] 14 then 15 PATH_PHPDOC=/usr/bin/phpdoc 16 else 17 echo "phpdoc not found" 18 exit 1 19 fi 9 20 10 21 OUTPUTFORMAT=HTML
Note: See TracChangeset
for help on using the changeset viewer.
