Subject: Re: pkg/35026 (new option for pkg_chk for using SU_CMD from
To: None <abs@NetBSD.org, gnats-admin@netbsd.org, pkgsrc-bugs@netbsd.org,>
From: Aleksey Cheusov <cheusov@tut.by>
List: pkgsrc-bugs
Date: 12/20/2006 21:15:04
The following reply was made to PR pkg/35026; it has been noted by GNATS.
From: Aleksey Cheusov <cheusov@tut.by>
To: gnats-bugs@NetBSD.org
Cc: abs@NetBSD.org, pkgsrc-bugs@NetBSD.org, gnats-admin@NetBSD.org
Subject: Re: pkg/35026 (new option for pkg_chk for using SU_CMD from
mk.conf)
Date: Wed, 20 Dec 2006 23:13:23 +0200
> Would having pkg_chk automatically use SU_CMD if the user is non root cover
> your needs? something like:
The patch looks fine except:
1) I'm not sure about unpriviledged builds;
2) s/!=/==/
3) I would prefer to double quote `id -u`, id program may fail (who knows),
Interix allows user names with spaces inside.
> +if [ `${ID} -u` != 0 ] ; then
+if [ "`${ID} -u`" == 0 ] ; then
--
Best regards, Aleksey Cheusov.