On 02-03-18 15:47:35 CET, Robert Joop wrote: > On 02-03-08 11:02:25 CET, Michael Bell wrote: > > > > (+) you call echo with '-n' to prevent the implicit trailing new line > > > > character. while this works under bash and csh it doesn't work under sh > > > > or ksh. for echo calls, the '-n' argument was removed and '\c' was added > > > > to the end of the string. > > > > This is a really good hint. I fixed it. > > unfortunately, the fix makes it as broken as before, only the other way > around. > echo -n "..." is BSD-style (solaris1 sh, freeBSD sh, GNU bash), > echo "...\c" is sysV-style (solaris2 sh). > > to support both, a more elaborate solution would have to be found.
...like that provided by configure :-) echo @ECHO_N@ "...@ECHO_C@" rj _______________________________________________ OpenCA-Devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/openca-devel
