diff --git a/build_tools/prep_moduledeps b/build_tools/prep_moduledeps index 21f1f5e4a9..01aeda6b70 100755 --- a/build_tools/prep_moduledeps +++ b/build_tools/prep_moduledeps @@ -10,7 +10,7 @@ process_dir() { catsuffix=${3} displayname=${4} - echo -e "\t" + printf "\t\n" for file in `ls ${dir}/${prefix}*.c ${dir}/${prefix}*.cc 2> /dev/null | sort` do if [ ! -f ${file} ]; then @@ -20,12 +20,12 @@ process_dir() { fname=`basename ${fname} .cc` get_description ${file} desc=${TDESC} - echo -e "\t\t" + printf "\t\t\n" awk -f build_tools/get_moduleinfo ${file} - echo -e "\t\t" + printf "\t\t\n" awk -f build_tools/get_makeopts ${file} >> .makeoptstmp done - echo -e "\t" + printf "\t\n" } echo ""