diff options
author | Torsten Veller <tove@gentoo.org> | 2008-07-19 09:20:06 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2008-07-19 09:20:06 +0000 |
commit | f094f0c1362f16dc81928a7a05670c878157cc62 (patch) | |
tree | 289e8a27930778e8e199c53915764ea6a26810c1 | |
parent | remove old (diff) | |
download | gentoo-2-f094f0c1362f16dc81928a7a05670c878157cc62.tar.gz gentoo-2-f094f0c1362f16dc81928a7a05670c878157cc62.tar.bz2 gentoo-2-f094f0c1362f16dc81928a7a05670c878157cc62.zip |
die || string -> die string
-rw-r--r-- | eclass/gnat.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/gnat.eclass b/eclass/gnat.eclass index 7376535c5aff..de24695fcd5e 100644 --- a/eclass/gnat.eclass +++ b/eclass/gnat.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnat.eclass,v 1.35 2008/04/12 07:42:47 george Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnat.eclass,v 1.36 2008/07/19 09:20:06 tove Exp $ # # Author: George Shapovalov <george@gentoo.org> # Belongs to: ada herd <ada@gentoo.org> @@ -438,6 +438,6 @@ gnat_src_install() { fi done else - die || "please make sure you have at least one gnat compiler installed!" + die "please make sure you have at least one gnat compiler installed!" fi } |