From: Kevin Day Date: Thu, 11 Dec 2025 05:42:26 +0000 (-0600) Subject: Bugfix: Incorrect destination path for the custom stand alone build config.h files. X-Git-Tag: 0.8.0~35 X-Git-Url: https://www.git.kevux.org/?a=commitdiff_plain;h=2888717adf7a770dec0b7d9f9f001e8754700f0b;p=fll Bugfix: Incorrect destination path for the custom stand alone build config.h files. This now uses the correct path. --- 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