NetBSD-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: bin/50557: build.sh does not run on Nixos



The following reply was made to PR bin/50557; it has been noted by GNATS.

From: Robert Elz <kre%munnari.OZ.AU@localhost>
To: christos%zoulas.com@localhost (Christos Zoulas)
Cc: gnats-bugs%NetBSD.org@localhost, gnats-admin%netbsd.org@localhost, netbsd-bugs%netbsd.org@localhost,
        paspanag%gmail.com@localhost
Subject: Re: bin/50557: build.sh does not run on Nixos
Date: Mon, 30 May 2016 21:49:03 +0700

     Date:        Mon, 30 May 2016 10:25:50 -0400
     From:        christos%zoulas.com@localhost (Christos Zoulas)
     Message-ID:  <20160530142550.1CF9417FDAB%rebar.astron.com@localhost>
 
   | On May 30, 12:50pm, joerg%bec.de@localhost (Joerg Sonnenberger) wrote:
   | |  The idea here was to explicitly force the external pwd and "env pwd"
   | |  does exactly that?
   | 
   | So does \pwd or 'pwd'...
 
 Actually, they don't, quoting has long been removed by the time command
 execution (an path searching etc) are done.
 
 eg: (using an old NetBSD sh, not the current one)
 
 $ f
 f: not found
 $ f() { echo hello; }
 $ f
 hello
 $ \f
 hello
 $ 'f'
 hello
 
 The same applies to built ins...
 
 $ echo -e hhh\\tiii
 hhh     iii
 $ /bin/echo -e hhh\\tiii
 -e hhh\tiii
 $ 'echo' -e hhh\\tiii
 hhh     iii
 
 kre
 
 


Home | Main Index | Thread Index | Old Index