mirror of
https://github.com/lingble/meta-tegra.git
synced 2026-01-12 00:15:13 +00:00
* 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>
11 lines
259 B
Plaintext
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
|
|
)
|
|
}
|