Re: [tcljava-user] problem in make install
Brought to you by:
mdejong
From: Mo D. <md...@un...> - 2005-09-16 21:24:00
|
On Fri, 16 Sep 2005 04:41:37 -0700 (PDT) community help <hel...@ya...> wrote: > > Did installing "jaclsh" also fail with the same > > error or was it > > just the jaclsh.bat file that did not work? > jaclsh installed successfully. Well, that does help. > Here is the content of my jaclsh.bat: > -------------------- > @echo off > setlocal > > set JAVA=c:/j2sdk1.4.1/bin/java > set JAVA_FLAGS= -ms5m -mx22m > > set PREFIX=C:/msys/jacl1.3.2/NONE Ahh, this seems to be the problem. The prefix should not include "NONE" there at the end. How did you configure jacl? Could you post the exact configure command line you used? > My msys directory does not contain any directory of > name usr. Perhaps this is the problem as jacl tries to > install in /usr/local/bin? My guess here is that you configured jacl like so: ./configure make make install And the problem is showing up because the prefix is getting set to "NONE" instead of /usr/local which is what it would get set to by default. Does it work if you run configure like so: ./configure --prefix=/usr/local make make install If that fixes the problem, then it is clearly caused by the default --prefix value not getting setup correctly in the configure file. Could you let me know if that is the problem you were running into? thanks Mo DeJong |