diff options
author | Alin Năstac <mrness@gentoo.org> | 2009-09-16 20:11:17 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2009-09-16 20:11:17 +0000 |
commit | 63aeeacefa76c942d12dff6c9857b7b65ff72c55 (patch) | |
tree | 79c40ece5d78986752a8bbcc2406eff1bd31276d /eclass/ssl-cert.eclass | |
parent | stable x86, bug 270008 (diff) | |
download | historical-63aeeacefa76c942d12dff6c9857b7b65ff72c55.tar.gz historical-63aeeacefa76c942d12dff6c9857b7b65ff72c55.tar.bz2 historical-63aeeacefa76c942d12dff6c9857b7b65ff72c55.zip |
fix comparison test
Diffstat (limited to 'eclass/ssl-cert.eclass')
-rw-r--r-- | eclass/ssl-cert.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/ssl-cert.eclass b/eclass/ssl-cert.eclass index 169a5ba29824..47ff67be12cc 100644 --- a/eclass/ssl-cert.eclass +++ b/eclass/ssl-cert.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/ssl-cert.eclass,v 1.16 2008/04/14 06:37:44 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ssl-cert.eclass,v 1.17 2009/09/16 20:11:17 mrness Exp $ # # @ECLASS: ssl-cert.eclass # @MAINTAINER: @@ -235,7 +235,7 @@ install_cert() { done # Resulting status - if [ ! ${count} ] ; then + if [ ${count} = 0 ] ; then eerror "No certificates were generated" return 1 elif [ ${count} != ${#} ] ; then |