From: Heiko Z. <smi...@us...> - 2011-12-10 19:35:59
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv15744 Modified Files: docbook2X Log Message: we need perl enabled in order to build this Index: docbook2X =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/docbook2X,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- docbook2X 5 Dec 2011 09:11:37 -0000 1.7 +++ docbook2X 10 Dec 2011 19:35:57 -0000 1.8 @@ -19,11 +19,13 @@ case $1 in build ) - ./configure --prefix=/usr --with-html-xsl || exit 1 - make $PMAKE || exit 1 - # install it, because it's needed by some programs + if [ "$CONFIG_PERL" = "y" ]; then + ./configure --prefix=/usr --with-html-xsl || exit 1 + make $PMAKE || exit 1 + # install it, because it's needed by some programs - make install || exit 1 + make install || exit 1 + fi ;; * ) |