Subject: Re: pkg/19140: cpio options in citrx_ica install script
To: None <netbsd-bugs@netbsd.org>
From: David Laight <david@l8s.co.uk>
List: netbsd-bugs
Date: 11/23/2002 10:22:47
> - /bin/false
> + /usr/bin/false
...
> - /bin/true
> + /usr/bin/true
Posix requires that 'true' and 'false' be executed regardless of
$PATH (typically by them being builtins).
So removing the /bin/ should be portably correct.
Also replacing:
true
with the builtin:
:
and
false
with the construct:
! :
is definitely safe and portable.
You might suggest either to the originater of the package.
David
--
David Laight: david@l8s.co.uk