Skip to content
Snippets Groups Projects
Commit ad92ad68 authored by Christian Engwer's avatar Christian Engwer
Browse files

fix output for names with spaces

[[Imported from SVN: r5160]]
parent 7d5524c6
No related branches found
No related tags found
No related merge requests found
......@@ -72,8 +72,8 @@ AC_DEFUN([DUNE_CHECK_ALL],[
AC_DEFUN([DUNE_ADD_SUMMARY_ENTRY],[
indentlen=17
txt=$1
while test `echo $txt | tr -d '\n' | wc -c` -lt $indentlen; do txt=$txt.; done
txt="$1"
while test `echo "$txt" | tr -d '\n' | wc -c` -lt $indentlen; do txt="$txt."; done
txt="$txt: $2"
[DUNE_SUMMARY="$DUNE_SUMMARY echo '$txt';"]
])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment