<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.26.0">
</HEAD>
<BODY>
On Sat, 2010-09-18 at 22:00 -0400, Trevor Woerner wrote:<BR>
<BLOCKQUOTE TYPE=CITE>
    <TT><FONT COLOR="#1a1a1a">It's a substring operation.</FONT></TT><BR>
    <BR>
    <TT><FONT COLOR="#1a1a1a">echo &quot;${_line:7}&quot;</FONT></TT><BR>
    <BR>
    <TT><FONT COLOR="#1a1a1a">is supposed to print the variable $_line starting from the 7th</FONT></TT><BR>
    <TT><FONT COLOR="#1a1a1a">character. That way all the titles are supposed to line up. But I</FONT></TT><BR>
    <TT><FONT COLOR="#1a1a1a">guess substring notation is not portable... :-)</FONT></TT><BR>
    <BR>
</BLOCKQUOTE>
Ok, I figured it out. <BR>
<BR>
The first line of build.sh is:
<BLOCKQUOTE>
<PRE>
#!/bin/sh
</PRE>
</BLOCKQUOTE>
So it's a portability issue. The echo -e command prints -e as part of the text to print.<BR>
Type &quot;man sh&quot;. <BR>
<BR>
Everything works if I type them from a terminal command line (which is GNU bash).<BR>
<BR>
All the configure scripts created by Autoconf are bin/sh. This is what Adrian was saying.
</BODY>
</HTML>