diff options
author | Torsten Veller <tove@gentoo.org> | 2008-07-19 09:22:54 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2008-07-19 09:22:54 +0000 |
commit | cb1fdcd390b029c677a9e8ed762f8116da991cf2 (patch) | |
tree | 5fe0fac426b77309b4903c3fbf89e59789c8e093 /eclass | |
parent | die || string -> die string (diff) | |
download | gentoo-2-cb1fdcd390b029c677a9e8ed762f8116da991cf2.tar.gz gentoo-2-cb1fdcd390b029c677a9e8ed762f8116da991cf2.tar.bz2 gentoo-2-cb1fdcd390b029c677a9e8ed762f8116da991cf2.zip |
Add missing die
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/latex-package.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/latex-package.eclass b/eclass/latex-package.eclass index 2b63552567b8..5aedc6c869d3 100644 --- a/eclass/latex-package.eclass +++ b/eclass/latex-package.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/latex-package.eclass,v 1.33 2008/02/17 19:03:07 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/latex-package.eclass,v 1.34 2008/07/19 09:22:54 tove Exp $ # @ECLASS: latex-package.eclass # @MAINTAINER: @@ -114,7 +114,7 @@ latex-package_src_doinstall() { for i in `find . -maxdepth 1 -type f -name "*.${1}"` do insinto /usr/share/doc/${P} - doins $i || "doins $i failed" + doins $i || die "doins $i failed" #dodoc -u $i done ;; |