Re: Bulding a 64bit tclkit based on tcl8.5 on Solaris SPARC.
"Larry W. Virden" <[email protected]> Wed, 11 Mar 2009 06:00:18 -0700 (PDT)
| Newsgroups | gmane.comp.lang.tcl.starkit |
|---|---|
| Message-ID | <[email protected]> |
On Mar 4, 5:39 am, franky777 <[email protected]> wrote: > Installing tclsh as /opt/csw/tcl/TclDevKit-5.0/kit/install/fidarc1/bin/ > tclsh8.4 : > RUN: /opt/csw/tcl/TclDevKit-5.0/kit/install/fidarc1/bin/tclsh8.5 << > {parray tcl_platform} > > ERROR: couldn't execute "/opt/csw/tcl/TclDevKit-5.0/kit/install/ > fidarc1/bin/tclsh8.5": no such file or directory While I can't tell you why this happened, I can tell you what literally happened. The script you were using installed the tclsh it built as tclsh8.4 instead of tclsh8.5 . On your system, type $ /opt/csw/tcl/TclDevKit-5.0/kit/install/fidarc1/bin/tclsh8.4 % info patchlevel If the results say "8.5." something, then it built the right thing, but installed it as the wrong name. If that is the case, what _I_ would do is type $ mv /opt/csw/tcl/TclDevKit-5.0/kit/install/fidarc1/bin/tclsh8.4 /opt/ csw/tcl/TclDevKit-5.0/kit/install/fidarc1/bin/tclsh8.5 and then rerun the script. I would think it should then proceed with the process of building the tclkit as expected.