File: regenerateBootstrapFiles.sh

package info (click to toggle)
eclipse 3.8.0~rc4-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 338,668 kB
  • sloc: java: 2,766,594; ansic: 136,762; xml: 104,394; cpp: 35,759; jsp: 4,420; sh: 3,288; perl: 1,687; makefile: 186; python: 67; php: 24
file content (22 lines) | stat: -rwxr-xr-x 446 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
set -e 

usage='usage: $0 <launcherDir>'

launcherDir=$1

if [ "x$launcherDir"x = 'xx' ]; then
   echo >&2 "$usage"
   exit 1
fi

java -jar \
$launcherDir/plugins/org.eclipse.equinox.launcher_*.jar \
-debug \
-consolelog \
-data $launcherDir \
-application org.eclipse.ant.core.antRunner \
-f pdebuild.xml generateScripts \
-DskipBase=true \
-DsdkSource=build/eclipse-3.8.0-I20120502-2000-src \
2>&1 | tee ./generatePdeBuildScripts.log