Changeset beb0f54
- Timestamp:
- 2015-05-17T04:13:30Z (9 years ago)
- Branches:
- master
- Children:
- 965127b
- Parents:
- baa09cc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
rbaa09cc rbeb0f54 681 681 682 682 if [ "$doc" = "1" ]; then 683 if [ ! -e doc/user-guide/help.txt ] && \ 684 ! type xmlto > /dev/null 2> /dev/null || \ 685 ! type xsltproc > /dev/null 2> /dev/null 686 then 683 # check this here just in case someone tries to install it in python2.4... 684 if ! python -m xml.etree.ElementTree > /dev/null 2>&1; then 687 685 echo 688 echo 'WARNING: Building from an unreleased source tree without prebuilt helpfile.' 689 echo 'Install xmlto and xsltproc if you want online help to work.' 690 else 691 echo "DOC=1" >> Makefile.settings 692 fi 686 echo 'ERROR: Python (>=2.5 or 3.x) is required to generate docs' 687 exit 1 688 fi 689 echo "DOC=1" >> Makefile.settings 693 690 694 691 if [ "$skype" = "1" -o "$skype" = "plugin" ]; then
Note: See TracChangeset
for help on using the changeset viewer.