The root issue really is an unterminated quoted string in the makedepend script generated by configure, on line 106 (in my builds). The single-quote used by sed isn't terminated. (It's confusing because there are also double-quotes and backquotes on that line.)
/bin/bash is very willing to let that go, so nothing has broken in the past. However, 6.10+ changes the symlink for /bin/sh from /bin/bash to /bin/dash (Wikipedia page). /bin/dash is less forgiving, so the makedepend script fails.
The immediately workaround is to change the symlink for /bin/sh back to /bin/bash. I have done this on 7.04 and it works just fine.
I have x-posted this to p5p in the hopes that this will be fixed in 5.8.9 and future releases.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: [OT] Building Perl on Ubuntu 6.10+
by jettero (Monsignor) on May 17, 2007 at 20:10 UTC | |
|
Re: Building Perl on Ubuntu 6.10+
by zentara (Cardinal) on May 18, 2007 at 11:38 UTC |