diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2005-10-18 16:36:10 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2005-10-18 16:36:10 +0000 |
commit | 9cbbc694694ace7bd73be3948601d83c3cbe4cdf (patch) | |
tree | e88477f62e032b282b01627bbe626cc4bbd73478 /eclass | |
parent | Version bumped. (diff) | |
download | gentoo-2-9cbbc694694ace7bd73be3948601d83c3cbe4cdf.tar.gz gentoo-2-9cbbc694694ace7bd73be3948601d83c3cbe4cdf.tar.bz2 gentoo-2-9cbbc694694ace7bd73be3948601d83c3cbe4cdf.zip |
chown root:0 fix for bsd
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/common-lisp-common.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/common-lisp-common.eclass b/eclass/common-lisp-common.eclass index 7622f4770e04..e6661fe99e2e 100644 --- a/eclass/common-lisp-common.eclass +++ b/eclass/common-lisp-common.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/common-lisp-common.eclass,v 1.9 2004/09/15 23:10:21 kugelfang Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/common-lisp-common.eclass,v 1.10 2005/10/18 16:36:10 mkennedy Exp $ # # Author Matthew Kennedy <mkennedy@gentoo.org> # @@ -184,7 +184,7 @@ standard-impl-postinst() { if test-in ${impl} cmucl sbcl; then impl-restore-timestamp-hack ${impl} fi - chown -R root:root /usr/$(get_libdir)/${impl} + chown -R root:0 /usr/$(get_libdir)/${impl} /usr/bin/clc-autobuild-impl ${impl} yes register-common-lisp-implementation ${impl} } |