[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
|
[news.eclipse.technology.corona] Re: Problem with the demo setup script
|
And here is the next problem. The setupCorona.*.plutins.txt is not
compatible with OS X. Whe the files get untar'd, the Eclipse.app
directory is not fully populated on the server install, and the eclipse
link in the root directory (on both the client and server install) does
not point to the binary inside the Eclipse.app directory.
Here is the workadound:
cd install_client/eclipse
rm eclipse
ln -s Eclipse.app/Contents/MacOS/eclipse .
cd ../install_server/eclipse
rmdir Eclipse.app
rm eclipse
cp -R ../../install_client/eclipse/Eclipse.app .
ln -s Eclipse.app/Contents/MacOS/eclipse .
Bryan
On 2007-02-09 16:35:47 -0600, Bryan Hunt <bhunt@xxxxxxx> said:
I just found a second problem ... in the <target
name="load.mac.properties" ...> unpack.eclipse.task.prefix is set to
"untar.eclipse" which should be "untar"
Bryan
On 2007-02-09 16:16:31 -0600, Bryan Hunt <bhunt@xxxxxxx> said:
The demo script does not work properly on OS X. The problem is with
the os conditionals. On OS X, both <os family="mac"> and <os
family="unix"> evaluate to true. The result is that WTP for linux is
downloaded instead of WTP for OS X. I worked around the problem by
deleting the condition <os family="unix">.
Bryan