--- mcore-src/trunk/mcore-tools/daemon/include/daemon.global.class 2013/05/10 09:09:36 2073 +++ mcore-src/trunk/mcore-tools/daemon/include/daemon.global.class 2013/05/10 10:46:47 2077 @@ -433,13 +433,13 @@ # default to files [[ -z ${type} ]] && type=f - for i in $(find ${path} ${opts} -type ${type} | sort) + for i in $(find ${path} ${opts} -type ${type} -print '%f\n' | sort) do if [[ -z ${retval} ]] then - retval="$(basename ${i})" + retval="${i}" else - retval="${retval} $(basename ${i})" + retval+=" ${i}" fi done @@ -450,4 +450,3 @@ { echo "mcored-$(<${MCLIBDIR}/VERSION)" } -