diff options
author | Yegor Timoshenko <yegortimoshenko@riseup.net> | 2018-10-07 01:58:27 +0000 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-11-17 07:32:03 +0000 |
commit | c2e494136731571a78b2bdd7ca9dc536a8b5aecd (patch) | |
tree | a31bde7ce2d3ce4a96445200491b12c4e40a14f0 /util/ifdtool | |
parent | 15316e2321e9936da5f0906ec76545830938a46e (diff) | |
download | coreboot-c2e494136731571a78b2bdd7ca9dc536a8b5aecd.tar.xz |
treewide: use /usr/bin/env where appropriate
Some Unix systems (GuixSD, NixOS) do not install programs like
Bash and Python to /usr/bin, and /usr/bin/env has to be used to
locate these instead.
Change-Id: I7546bcb881c532adc984577ecb0ee2ec4f2efe00
Signed-off-by: Yegor Timoshenko <yegortimoshenko@riseup.net>
Reviewed-on: https://review.coreboot.org/28953
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'util/ifdtool')
-rw-r--r-- | util/ifdtool/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/ifdtool/Makefile b/util/ifdtool/Makefile index cf6d37812f..e1188b209c 100644 --- a/util/ifdtool/Makefile +++ b/util/ifdtool/Makefile @@ -16,7 +16,7 @@ PROGRAM = ifdtool CC = gcc -INSTALL = /usr/bin/install +INSTALL = /usr/bin/env install PREFIX = /usr/local CFLAGS = -O2 -g -Wall -W -Werror -I../../src/commonlib/include LDFLAGS = |