If you've tried to compile Perl on Ubuntu 6.10+, you probably have run into a problem with an unterminated quoted string when doing make depend. There's several things going on here and, luckily, there's a very simple workaround.
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.
My criteria for good software:
- Does it work?
- Can someone else come in, make a change, and be reasonably certain no bugs were introduced?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.