This is the mail archive of the insight@sourceware.org mailing list for the Insight project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re:compiling insight on FC5


After some digging in the code I found that with three simple changes to the distribution file I could compile insight.
Here's the diff:

diff -r insight-6.4/tcl/unix/configure insight-6.4-patched/tcl/unix/configure
5508c5508
<               system=MP-RAS-`awk '{print }' /etc/.relid'`
---
>               system=MP-RAS-`awk '{print }' /etc/.relid`
7046d7045
<
7048c7047
<               system=MP-RAS-`awk '{print }' /etc/.relid'`
---
>               system=MP-RAS-`awk '{print }' /etc/.relid`
7279a7279
>
diff -r insight-6.4/tk/unix/configure insight-6.4-patched/tk/unix/configure
1952c1952
<               system=MP-RAS-`awk '{print }' /etc/.relid'`
---
>               system=MP-RAS-`awk '{print }' /etc/.relid`

As you can see a single quote (') within backquotes is disturbing the shell interpreter. Maybe the 'bash' coming with Fedora Core 5 (bash-3.1-6.2) is not compatible with configure scripts you provide.

Best Regards.
--
Max Pagani
http://www.maxpagani.org/



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]