From 2888717adf7a770dec0b7d9f9f001e8754700f0b Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Wed, 10 Dec 2025 23:42:26 -0600 Subject: [PATCH] Bugfix: Incorrect destination path for the custom stand alone build config.h files. This now uses the correct path. --- build/scripts/package.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/scripts/package.sh b/build/scripts/package.sh index 7608229..f52195a 100644 --- a/build/scripts/package.sh +++ b/build/scripts/package.sh @@ -2366,11 +2366,11 @@ package_operation_stand_alone() { j=$(echo "${i}" | sed -e "s|${path_build}stand_alone/${name}.config||" -e "s|\.h||") j="config${j}.h" - cp ${verbose_common} -R ${i} ${package}data/build/${j} + cp ${verbose_common} -R ${i} ${package}sources/c/${j} if [[ ${?} -ne 0 ]] ; then if [[ ${verbosity} != "quiet" ]] ; then - echo -e "${c_error}ERROR: Failed to copy file ${c_notice}${i}${c_error} to ${c_notice}${package}data/build/${j}${c_error}.${c_reset}" + echo -e "${c_error}ERROR: Failed to copy file ${c_notice}${i}${c_error} to ${c_notice}${package}sources/c/${j}${c_error}.${c_reset}" fi let failure=1 -- 1.8.3.1