From 8c6dc19283d97a46c229da117ef7fd16c489faa8 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Wed, 10 Dec 2025 23:53:29 -0600 Subject: [PATCH] Bugfix: Multiple dependencies files, not handling all of the dependencies. A single stand alone project is not properly getting all of the FLL sources when multiple dependency files are specified and they have different dependencies. This now ensures that all properly named `dependencies` files are processed. --- build/scripts/package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/scripts/package.sh b/build/scripts/package.sh index f52195a..c6ed04b 100644 --- a/build/scripts/package.sh +++ b/build/scripts/package.sh @@ -2381,7 +2381,7 @@ package_operation_stand_alone() { fi if [[ -f ${package}data/build/dependencies ]] ; then - packages=$(grep -shoP '^\s*[^\s]+' ${package}data/build/dependencies | sed -e 's|^[[:space:]]*||g') + packages=$(grep -shoP '^\s*[^\s]+' ${package}data/build/dependencies* | sed -e 's|^[[:space:]]*||g') if [[ ${packages} != "" ]] ; then for package_sub in ${packages} ; do -- 1.8.3.1