From d9e0164080dffc0f64b0b43914251b96dccc6bd9 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Thu, 11 Jul 2024 11:42:06 -0500 Subject: [PATCH] updated build system --- scripts/env.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/env.sh b/scripts/env.sh index 1e52bb3d..92b377e0 100755 --- a/scripts/env.sh +++ b/scripts/env.sh @@ -308,5 +308,7 @@ echo "-=[Libraries]=-" for PROJECT_LIBRARY in "${PROJECT_LIBRARIES[@]}"; do ENABLE_NAME=PROJECT_ENABLE_${PROJECT_LIBRARY} KEEP_NAME=PROJECT_KEEP_${PROJECT_LIBRARY} - echo " ${ENABLE_NAME}=${!ENABLE_NAME},${!KEEP_NAME}" + if [ "${!ENABLE_NAME}" == "ON" ] || [ "${!KEEP_NAME}" == "1" ]; then + echo " ${ENABLE_NAME}: Enable[${!ENABLE_NAME}] Keep[${!KEEP_NAME}]" + fi done