[svn-commits] russell: trunk r295279 - in /trunk: ./ build_tools/prep_tarball

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Nov 16 16:41:36 CST 2010


Author: russell
Date: Tue Nov 16 16:41:32 2010
New Revision: 295279

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=295279
Log:
Merged revisions 295278 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.8

........
  r295278 | russell | 2010-11-16 16:41:11 -0600 (Tue, 16 Nov 2010) | 2 lines
  
  Check for pdftotext and give a useful error if not found.
........

Modified:
    trunk/   (props changed)
    trunk/build_tools/prep_tarball

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.

Modified: trunk/build_tools/prep_tarball
URL: http://svnview.digium.com/svn/asterisk/trunk/build_tools/prep_tarball?view=diff&rev=295279&r1=295278&r2=295279
==============================================================================
--- trunk/build_tools/prep_tarball (original)
+++ trunk/build_tools/prep_tarball Tue Nov 16 16:41:32 2010
@@ -18,6 +18,15 @@
 	exit 1
 fi
 
+if ! which pdftotext 2>&1 > /dev/null ; then
+	echo
+	echo "pdftotext not found.  Please install it."
+	echo
+	echo "On Debian/Ubuntu/Fedora/CentOS, install the poppler-utils package."
+	echo
+	exit 1
+fi
+
 cd doc
 echo "Exporting Asterisk wiki to a PDF (this will take a minute) ..."
 wikiexport.py




More information about the svn-commits mailing list