Use portable shebangs (/bin/bash -> /usr/bin/env bash)

"/usr/bin/env bash" is used everywhere else in host tools. These are the
only remaining offenders.

Signed-off-by: Bjørn Forsman <bjorn.forsman@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Bjørn Forsman 2015-10-19 18:38:14 +02:00 committed by Peter Korsgaard
parent 94c76a6df0
commit 9eedc747ab
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
BUILDIR=$1
TTY=$2

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
GENIMAGE_CFG="board/wandboard/genimage.cfg"
GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp"