[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.technology.equinox] Problem reorganizing product layout

Hello,

we build an rcp (its an eclipse based ide) application, and on mac we wish to reorganize so that everything is contained in the .app, which we do by simply moving everything into the .app, and then changing a couple of the paths in the .ini file. The build is a straight pde product build using 3.5.0

the build initially outputs;

product/plugins
       features
       product.app
       configuration
       p2

we change this to

product.app/plugins
           features
           configuration
           p2

This works, and the product runs. The problem comes once we install something new (eg mylyn) into the product, it installs fine, but then when you choose to restart it just errors, the log says that it can't find EclipseStarter.

When I look inside the .app, I see that there is a new .app in its old location (relative to everything else).

ie;

product.app/product.app
           p2
           .....

So my guess is that p2 is in someway managing the location of the launcher, set during the build, how can I customize this behavior so that my product can work when all inside of the .app

Any insight would be greatly appreciated