equal
deleted
inserted
replaced
23 # have any questions. |
23 # have any questions. |
24 # |
24 # |
25 |
25 |
26 # Base locations where bundles are located |
26 # Base locations where bundles are located |
27 slashjava=/java |
27 slashjava=/java |
28 devtools=${slashjava}/devtools |
28 drops.dir=${slashjava}/devtools/share/jdk7-drops |
29 |
29 |
30 # This is the JDK used to build and run the bootstrap version of javac. |
30 # This is the JDK used to build and run the bootstrap version of javac. |
31 # The bootstrap javac is used to compile both boostrap versions of the |
31 # The bootstrap javac is used to compile both boostrap versions of the |
32 # other tools, and product versions of all the tools. |
32 # other tools, and product versions of all the tools. |
33 # Override this path as needed, either on the command line or in |
33 # Override this path as needed, either on the command line or in |
62 dist.dir=${output.dir}/dist |
62 dist.dir=${output.dir}/dist |
63 dist.lib.dir=${dist.dir}/lib |
63 dist.lib.dir=${dist.dir}/lib |
64 dist.classes.jar=${dist.lib.dir}/classes.jar |
64 dist.classes.jar=${dist.lib.dir}/classes.jar |
65 dist.src.zip=${dist.lib.dir}/src.zip |
65 dist.src.zip=${dist.lib.dir}/src.zip |
66 |
66 |
67 # Where all drop sources live |
67 # Where all drop sources get placed when downloaded and unzipped |
68 drop.dir=./drop |
68 drop.expanded.dir=${output.dir}/drop |
|
69 |
|
70 # Location if the sources were included already |
|
71 drop.included.dir=./drop_included |
69 |
72 |
70 # Where patches to drop bundle sources live |
73 # Where patches to drop bundle sources live |
71 patches.dir=patches |
74 patches.dir=patches |
72 |
|
73 # Original source area |
|
74 orig.dir=src |
|
75 orig.src.dir=${orig.dir}/share/classes |
|
76 |
75 |
77 # Sanity information |
76 # Sanity information |
78 sanity.info= Sanity Settings:${line.separator}\ |
77 sanity.info= Sanity Settings:${line.separator}\ |
79 ant.home=${ant.home}${line.separator}\ |
78 ant.home=${ant.home}${line.separator}\ |
80 ant.version=${ant.version}${line.separator}\ |
79 ant.version=${ant.version}${line.separator}\ |
96 javac.no.jdk.warnings=${javac.no.jdk.warnings}${line.separator}\ |
95 javac.no.jdk.warnings=${javac.no.jdk.warnings}${line.separator}\ |
97 output.dir=${output.dir}${line.separator}\ |
96 output.dir=${output.dir}${line.separator}\ |
98 build.dir=${build.dir}${line.separator}\ |
97 build.dir=${build.dir}${line.separator}\ |
99 dist.dir=${dist.dir}${line.separator}\ |
98 dist.dir=${dist.dir}${line.separator}\ |
100 drop.dir=${drop.dir}${line.separator}\ |
99 drop.dir=${drop.dir}${line.separator}\ |
|
100 drops.dir=${drops.dir}${line.separator}\ |
101 ${line.separator} |
101 ${line.separator} |
102 |
102 |
103 #------------------------------------------------------------ |
103 #------------------------------------------------------------ |