mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-12 01:07:34 +08:00
b0a73b5144
There is a platform, NixOS Linux, on which '/bin/bash' is not available. This commit changes the interpreter to '/usr/bin/env bash' in some scripts essential to firmware building.
13 lines
400 B
Bash
Executable File
13 lines
400 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
#echo "DEBUG: kconfiglib kconfig-tweak wrapper, arguments: ${@}"
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
export APPSDIR="`pwd`/../apps"
|
|
|
|
# Example:
|
|
# kconfig-tweak --set-str CONFIG_APPS_DIR ../apps
|
|
# becomes
|
|
# python setconfig.py CONFIG_APPS_DIR=../apps
|
|
PYTHONPATH=${DIR} python ${DIR}/setconfig.py --kconfig=Kconfig ${2}=${3} > /dev/null
|