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 | 855946af565f43bd8f861d0fdc8abb92206bcc6b (patch) | |
tree | 2bcd654ad0a01d55d3cd8bab2c971213b4dfbeeb /eclass/gnat.eclass | |
parent | Bump patchset to fix bug #193954 (diff) | |
download | gentoo-2-855946af565f43bd8f861d0fdc8abb92206bcc6b.tar.gz gentoo-2-855946af565f43bd8f861d0fdc8abb92206bcc6b.tar.bz2 gentoo-2-855946af565f43bd8f861d0fdc8abb92206bcc6b.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 |