Re: [ovs-dev] [PATCH 4/4] utilities: Tweak python shebangs to use env

2016-05-19 Thread Takashi YAMAMOTO
On Fri, May 20, 2016 at 2:42 PM, Takashi YAMAMOTO wrote: > > > On Fri, May 20, 2016 at 12:47 PM, Ben Pfaff wrote: > >> On Wed, May 18, 2016 at 03:30:31AM +0900, YAMAMOTO Takashi wrote: >> > "python" command provided by pkg_alternatives is a shell script. >> > At least on NetBSD-7, execve can't e

Re: [ovs-dev] [PATCH 4/4] utilities: Tweak python shebangs to use env

2016-05-19 Thread Takashi YAMAMOTO
On Fri, May 20, 2016 at 12:47 PM, Ben Pfaff wrote: > On Wed, May 18, 2016 at 03:30:31AM +0900, YAMAMOTO Takashi wrote: > > "python" command provided by pkg_alternatives is a shell script. > > At least on NetBSD-7, execve can't execute scripts whose interpreter > > is another shell script. (While

Re: [ovs-dev] [PATCH 4/4] utilities: Tweak python shebangs to use env

2016-05-19 Thread Ben Pfaff
On Wed, May 18, 2016 at 03:30:31AM +0900, YAMAMOTO Takashi wrote: > "python" command provided by pkg_alternatives is a shell script. > At least on NetBSD-7, execve can't execute scripts whose interpreter > is another shell script. (While some "rich" shells like zsh seem > to have handle the case b

[ovs-dev] [PATCH 4/4] utilities: Tweak python shebangs to use env

2016-05-17 Thread YAMAMOTO Takashi
"python" command provided by pkg_alternatives is a shell script. At least on NetBSD-7, execve can't execute scripts whose interpreter is another shell script. (While some "rich" shells like zsh seem to have handle the case by itself, NetBSD's /bin/sh doesn't.) Workaround the issue by using env com