diff options
author | Stuart Herbert <stuart@gentoo.org> | 2003-08-20 10:19:46 +0000 |
---|---|---|
committer | Stuart Herbert <stuart@gentoo.org> | 2003-08-20 10:19:46 +0000 |
commit | 7f8f821ac472056bc5f751e2772bd61935d346f8 (patch) | |
tree | a471f3698cbb06f49f5c4482731aa074f64abed7 /eclass | |
parent | added a notice about tab completion, closing bug #26776 (diff) | |
download | gentoo-2-7f8f821ac472056bc5f751e2772bd61935d346f8.tar.gz gentoo-2-7f8f821ac472056bc5f751e2772bd61935d346f8.tar.bz2 gentoo-2-7f8f821ac472056bc5f751e2772bd61935d346f8.zip |
Fix for bug 23400
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/webapp-apache.eclass | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/eclass/webapp-apache.eclass b/eclass/webapp-apache.eclass index afc6c419100c..4e37546703a6 100644 --- a/eclass/webapp-apache.eclass +++ b/eclass/webapp-apache.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/webapp-apache.eclass,v 1.8 2003/08/18 13:00:01 stuart Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/webapp-apache.eclass,v 1.9 2003/08/20 10:19:46 stuart Exp $ # # Author: Stuart Herbert <stuart@gentoo.org> # @@ -46,6 +46,11 @@ function webapp-detect () { webapp-determine-installowner webapp-determine-htdocsdir webapp-determine-cgibindir + + # explicit return here to ensure the return code + # from webapp-determine-cgibindir above isn't returned instead + + return 0 } function webapp-determine-htdocsdir () |