8080286: use path separator setting consistently in Nashorn project properties

Wed, 13 May 2015 15:41:46 +0200

author
mhaupt
date
Wed, 13 May 2015 15:41:46 +0200
changeset 1353
b9dda83d984b
parent 1352
4a12b571aa4c
child 1354
24a72d0aef36

8080286: use path separator setting consistently in Nashorn project properties
Summary: replace uses of ":" with platform-independent path separator property
Reviewed-by: hannesw, sundar

make/build.xml file | annotate | diff | comparison | revisions
make/project.properties file | annotate | diff | comparison | revisions
     1.1 --- a/make/build.xml	Mon Dec 15 16:30:45 2014 +0530
     1.2 +++ b/make/build.xml	Wed May 13 15:41:46 2015 +0200
     1.3 @@ -189,7 +189,7 @@
     1.4      <mkdir dir="${fxshell.classes.dir}"/>
     1.5      <javac srcdir="${fxshell.dir}"
     1.6             destdir="${fxshell.classes.dir}"
     1.7 -           classpath="${dist.jar}:${javac.classpath}"
     1.8 +           classpath="${dist.jar}${path.separator}${javac.classpath}"
     1.9             debug="${javac.debug}"
    1.10             encoding="${javac.encoding}"
    1.11             includeantruntime="false">
     2.1 --- a/make/project.properties	Mon Dec 15 16:30:45 2014 +0530
     2.2 +++ b/make/project.properties	Wed May 13 15:41:46 2015 +0200
     2.3 @@ -105,8 +105,8 @@
     2.4  javac.classpath=\
     2.5      ${build.classes.dir}
     2.6  javac.test.classpath=\
     2.7 -    ${build.classes.dir}:\
     2.8 -    ${build.test.classes.dir}:\
     2.9 +    ${build.classes.dir}${path.separator}\
    2.10 +    ${build.test.classes.dir}${path.separator}\
    2.11      ${file.reference.testng.jar}
    2.12  
    2.13  meta.inf.dir=${src.dir}/META-INF
    2.14 @@ -253,8 +253,8 @@
    2.15  testjfx-test-sys-prop.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} -cp ${testjfx.run.test.classpath}
    2.16  
    2.17  run.test.classpath=\
    2.18 -    ${file.reference.testng.jar}:\
    2.19 -    ${nashorn.internal.tests.jar}:\
    2.20 +    ${file.reference.testng.jar}${path.separator}\
    2.21 +    ${nashorn.internal.tests.jar}${path.separator}\
    2.22      ${nashorn.api.tests.jar}
    2.23  
    2.24  src.dir=src

mercurial