SystemAgent_BR2/buildroot_make.sh
2021-06-12 21:48:23 +08:00

9 lines
182 B
Bash
Executable File

#!/bin/bash
if [ -z ${BUILDROOT_PATH} ]; then
echo "BUILDROOT_PATH environment variable is not set."
exit
fi
make O=${PWD}/output BR2_EXTERNAL=${PWD} -C ${BUILDROOT_PATH} "$@"