diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2008-01-16 10:47:45 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2008-01-16 10:47:45 +0000 |
commit | ff16faaea6071035bb6bd5f4fb220a604ef428f9 (patch) | |
tree | caa11a517de4e5416eb8219b35463d3f37415d27 /eclass | |
parent | Version bump wrt #205664, thanks to Mcklaren for reporting. (diff) | |
download | gentoo-2-ff16faaea6071035bb6bd5f4fb220a604ef428f9.tar.gz gentoo-2-ff16faaea6071035bb6bd5f4fb220a604ef428f9.tar.bz2 gentoo-2-ff16faaea6071035bb6bd5f4fb220a604ef428f9.zip |
fix #205994
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/apache-2.eclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/apache-2.eclass b/eclass/apache-2.eclass index 79b2cf8db93a..001e9abda655 100644 --- a/eclass/apache-2.eclass +++ b/eclass/apache-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/apache-2.eclass,v 1.5 2007/12/31 23:46:24 hollow Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/apache-2.eclass,v 1.6 2008/01/16 10:47:45 hollow Exp $ # @ECLASS: apache-2 # @MAINTAINER: apache-devs@gentoo.org @@ -481,10 +481,8 @@ apache-2_src_install() { # link apache2ctl to the init script dosym /etc/init.d/apache2 /usr/sbin/apache2ctl - # provide symlinks for all the stuff we no longer rename, bug 177697 - for i in suexec apxs; do - dosym /usr/sbin/${i} /usr/sbin/${i}2 - done + # provide legacy symlink for apxs, bug 177697 + dosym /usr/sbin/apxs /usr/sbin/apxs2 # install some thirdparty scripts exeinto /usr/sbin @@ -512,6 +510,8 @@ apache-2_src_install() { if use suexec ; then fowners 0:apache /usr/sbin/suexec fperms 4710 /usr/sbin/suexec + # provide legacy symlink for suexec, bug 177697 + dosym /usr/sbin/suexec /usr/sbin/suexec2 fi # empty dirs |