Home | History | Annotate | Download | only in dbus

Lines Matching defs:die

3 function die()
19 cd $CHECKOUTDIR || die "could not changedir to $CHECKOUTDIR"
24 cvs co dbus || die "failed to cvs update"
25 cd dbus || die "could not cd to dbus"
31 ./autogen.sh --enable-xml-docs=yes --enable-doxygen-docs=yes || die "could not autogen"
32 doxygen Doxyfile || die "could not run Doxygen"
33 make -C doc || die "could not build docs"
43 cp README HACKING AUTHORS NEWS COPYING ChangeLog doc/ || die "could not copy in assorted files"
44 tar cfz dbus-docs.tar.gz doc/*.dtd doc/*.xsl doc/*.xml doc/*.html doc/*.txt doc/api/html/*.html doc/api/html/*.css doc/api/html/*.png doc/api/html/*.gif doc/HACKING doc/AUTHORS doc/NEWS doc/ChangeLog doc/TODO doc/README doc/COPYING doc/*.png doc/*.svg || die "could not tar up docs"
46 tar tfz dbus-docs.tar.gz | sort > tarball.list || die "could not list tarball contents"
47 find doc -not -type d | grep -v CVS | grep -v -E '.~[0-9.]+~' | grep -v Makefile | grep -vE '.c$' | grep -v man3dbus | grep -v .cvsignore | sort > filesystem.list || die "could not list doc/* contents"
49 diff -u filesystem.list tarball.list || die "some files were not included"