mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-16 09:30:35 +08:00
b35883f5d5
- this is a workaround for PATH variables that exceed the maximum cmake custom command length
13 lines
392 B
Bash
Executable File
13 lines
392 B
Bash
Executable File
#! /bin/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
|