diff options
author | George Shapovalov <george@gentoo.org> | 2007-09-27 12:56:41 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2007-09-27 12:56:41 +0000 |
commit | ca80476fe6a8fbf69b4c2cb42f9b5f5c8e8918c4 (patch) | |
tree | 0199f6eee0882bc1cd83b29aa5b2435ff3864fa1 /eclass/gnat.eclass | |
parent | Bump patchset to fix bug #193954 (diff) | |
download | historical-ca80476fe6a8fbf69b4c2cb42f9b5f5c8e8918c4.tar.gz historical-ca80476fe6a8fbf69b4c2cb42f9b5f5c8e8918c4.tar.bz2 historical-ca80476fe6a8fbf69b4c2cb42f9b5f5c8e8918c4.zip |
changed exit to return
Diffstat (limited to 'eclass/gnat.eclass')
-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 619da0983b19..f53b23cf75a9 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.28 2007/09/26 20:41:33 george Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnat.eclass,v 1.29 2007/09/27 12:56:41 george Exp $ # # Author: George Shapovalov <george@gentoo.org> # Belongs to: ada herd <ada@gentoo.org> @@ -134,7 +134,7 @@ get_active_profile() { local profiles=( $(get_env_list) ) if [[ ${profiles[@]} == "${MARKER}*" ]]; then - exit + return # returning empty string fi |