/usr/lib/eclipse/eclipse.ini is not used when launching eclipse
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
eclipse (Ubuntu) |
Invalid
|
Undecided
|
Unassigned |
Bug Description
Binary package hint: eclipse-platform
/usr/lib/
I know how to fix this, but I don't know what is the proper way to do so.
1) It is possible to complete the VMARGS variable in /usr/bin/eclipse launching script, @line 10.
2) It is possible to complete the /usr/bin/eclipse launching script to read /usr/lib/
in /usr/lib/
#insertion start
for argLine in `cat "${INSTALL}
do
if [ ${argLine} != "-vmargs" ]; then
fi
done
#insertion end
This loop add all vmargs found in eclipse.ini to the VMARGS variable that will be used by the script to launch eclipse.
Reported against Feisty and Gutsy. Not tested with other distros.