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

'echo -n' is not portable

[[Imported from SVN: r5121]]
parent a5421bf7
No related branches found
No related tags found
No related merge requests found
......@@ -212,7 +212,7 @@ AC_DEFUN([DUNE_CHECK_MODULES],[
# add this module to DUNE_SUMMARY
txt=_dune_name
indentlen=17
while test `echo -n $txt | wc -c` -lt $indentlen; do txt=$txt.; done
while test `echo $txt | tr -d '\n' | wc -c` -lt $indentlen; do txt=$txt.; done
txt="$txt: $with_[]_dune_module"
if test "x$_DUNE_MODULE[]_ROOT" != "x"; then
txt="$txt ($_DUNE_MODULE[]_ROOT)"
......
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