X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=cvsbp-prepare;h=53466b85f4472373c93a9f9f91741c62f9b302d3;hb=00611b4cf8bae33b1db2d048b589c7505b0abfb1;hp=8fb32902ff1a3a454382e45fadcd7700271dd6ce;hpb=1406d6828d2b364df31e7444653efe1a2d0952b2;p=uffi.git diff --git a/cvsbp-prepare b/cvsbp-prepare index 8fb3290..53466b8 100755 --- a/cvsbp-prepare +++ b/cvsbp-prepare @@ -1,7 +1,15 @@ -rm -f upload.sh make-dist.sh make-doc.sh cvsbp-prepare -rm -f `find . -type f -name .cvsignore` -if [ -f doc/Makefile ]; then - pushd doc > /dev/null - make - popd > /dev/null +#!/bin/bash + +# Make documentation to put in debian package +# This must match prebuilt upstream documentation + +if [ -d doc/Makefile ]; then + cd doc + make all + cd .. fi + +# Clean checked out CVS directory +rm -f upload.sh make-dist.sh make-doc.sh +rm -f `find . -type f -name .cvsignore` +rm -f cvsbp-prepare