]> Kevux Git Server - fll/commitdiff
Bugfix: Incorrect destination path for the custom stand alone build config.h files.
authorKevin Day <Kevin@kevux.org>
Thu, 11 Dec 2025 05:42:26 +0000 (23:42 -0600)
committerKevin Day <Kevin@kevux.org>
Thu, 11 Dec 2025 05:42:26 +0000 (23:42 -0600)
This now uses the correct path.

build/scripts/package.sh

index 7608229bf65a2ef95f3d0b1cb17439ec6d6a2743..f52195a86936bca893adf4e63123e5f5a925f6cd 100644 (file)
@@ -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