RE: [PATCH] build: replace which with Bash command built-in

2020-12-22 Thread Adrian Schmutzler
Hi, > -Original Message- > From: openwrt-devel [mailto:openwrt-devel-boun...@lists.openwrt.org] > On Behalf Of Petr Štetiar > Sent: Dienstag, 22. Dezember 2020 10:47 > To: openwrt-devel@lists.openwrt.org > Cc: Petr Štetiar > Subject: [PATCH] build: replace which wi

Re: [PATCH] build: replace which with Bash command built-in

2020-12-22 Thread Yousong Zhou
On Tue, 22 Dec 2020 at 17:51, Petr Štetiar wrote: > > `which` utility is not shipped by default for example on recent Arch > Linux and then any steps relying on its presence fails, like for example > following Python3 prereq build check: > > $ python3 --version > Python 3.9.1 > > $ make > /bin

Re: [PATCH] build: replace which with Bash command built-in

2020-12-22 Thread Rosen Penev
On Tue, Dec 22, 2020 at 1:50 AM Petr Štetiar wrote: > > `which` utility is not shipped by default for example on recent Arch > Linux and then any steps relying on its presence fails, like for example > following Python3 prereq build check: Funny. I have a different error on my barebones Manjaro VM

[PATCH] build: replace which with Bash command built-in

2020-12-22 Thread Petr Štetiar
`which` utility is not shipped by default for example on recent Arch Linux and then any steps relying on its presence fails, like for example following Python3 prereq build check: $ python3 --version Python 3.9.1 $ make /bin/sh: line 1: which: command not found /bin/sh: line 1: which: comman