local directory=
local directory_level=
local directory_sub=
+ local i=
+ local j=
+ local level=
local package=
local package_sub=
local packages=
- local level=
local path_=
local path_sub=
local path_name=
break
fi
+ for i in ${path_build}stand_alone/${name}.settings* ; do
+
+ if [[ ${i} == ${path_build}stand_alone/${name}.settings ]] ; then continue ; fi
+
+ j=$(echo "${i}" | sed -e "s|${path_build}stand_alone/${name}.settings|settings|")
+
+ cp ${verbose_common} -R ${i} ${package}data/build/${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}"
+ fi
+
+ let failure=1
+
+ break
+ fi
+ done
+
cp ${verbose_common} -R ${path_build}stand_alone/${name}.fakefile ${package}data/build/fakefile
if [[ ${?} -ne 0 ]] ; then
break
fi
+
+ for i in ${path_build}stand_alone/${name}.config*.h ; do
+
+ if [[ ${i} == ${path_build}stand_alone/${name}.config.h ]] ; then continue ; fi
+
+ 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}
+
+ 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}"
+ fi
+
+ let failure=1
+
+ break
+ fi
+ done
fi
if [[ -f ${package}data/build/dependencies ]] ; then