Files
meta-tegra/recipes-kernel/linux/kernel-devsrc.bbappend
Matt Madison b9507ceb23 meta: convert to new override syntax
* Ran convert-overrides.py to generate the initial changes
* Manual cleanup afterwards (which was a lot, due to our
  extensive use of overrides).

Signed-off-by: Matt Madison <matt@madison.systems>
2021-08-03 08:27:55 -07:00

11 lines
259 B
Plaintext

KERNEL_AWKSCRIPTDIRS ?= "scripts tools arch/*/tools"
do_install:append:tegra() {
(
cd $kerneldir/build
for i in $(grep -srI "^#!/bin/awk" ${KERNEL_AWKSCRIPTDIRS} | cut -d":" -f1); do
sed -i -e "s,^#!/bin/awk,#!${bindir}/env awk," $i
done
)
}