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 | efe654a1505aed480b2108738123c0f46a42aacf (patch) | |
tree | 0b5cae22e2e30a343746c465bf8fb05aae7aff07 /eclass | |
parent | Version bumped. (diff) | |
download | historical-efe654a1505aed480b2108738123c0f46a42aacf.tar.gz historical-efe654a1505aed480b2108738123c0f46a42aacf.tar.bz2 historical-efe654a1505aed480b2108738123c0f46a42aacf.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} } |