The regular files are being included in the stand alone builds.
This is confusing and can lead to build failures due to selecting invalid build settings files.
Remove the build settings files that must not exist in stand alone builds.
break
fi
+ # Clear out any build settings to ensure non-stand_alone build settings do not exist.
+
+ rm ${verbose_common} -f ${package}data/build/settings*
+
+ if [[ ${?} -ne 0 ]] ; then
+ if [[ ${verbosity} != "quiet" ]] ; then
+ echo -e "${c_error}ERROR: Failed to remove existing build settings ${c_notice}${package}data/build/settings*${c_error}.${c_reset}"
+ fi
+
+ let failure=1
+
+ break
+ fi
+
cp ${verbose_common} -R ${path_build}stand_alone/${name}.settings ${package}data/build/settings
if [[ ${?} -ne 0 ]] ; then