logo

overlay

My (experimental) gentoo overlay
commit: 539514d2321e5a0a7beaf07f87eced255a58ef83
parent: 96c4cd0d7b8f1da58450d4ea1b18312c3f93c7de
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sun,  2 Oct 2016 12:27:37 +0200

eclass/common-lisp-common: Fix SuperUser

Diffstat:

Meclass/common-lisp-common.eclass4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/common-lisp-common.eclass b/eclass/common-lisp-common.eclass @@ -89,7 +89,7 @@ EOF unregister-common-lisp-implementation() { PROGNAME=$(basename $0) if [ `id -u` != 0 ] ; then - echo $PROGNAME: you need to be root to run this program + echo $PROGNAME: you need to be SuperUser to run this program exit 1 fi if [ -z "$1" ] ; then @@ -186,7 +186,7 @@ standard-impl-postinst() { if test-in ${impl} cmucl sbcl; then impl-restore-timestamp-hack ${impl} fi - chown -R root:0 /usr/$(get_libdir)/${impl} + chown -R 0:0 /usr/$(get_libdir)/${impl} /usr/bin/clc-autobuild-impl ${impl} yes register-common-lisp-implementation ${impl} }