Subject: Re: pkg/35026 (new option for pkg_chk for using SU_CMD from
To: None <gnats-bugs@NetBSD.org>
From: Aleksey Cheusov <cheusov@tut.by>
List: pkgsrc-bugs
Date: 12/20/2006 23:13:23
> 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.