diff options
author | William Deegan <bill@baddogconsulting.com> | 2018-11-06 02:06:45 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2018-11-06 02:06:45 (GMT) |
commit | 8ed65dec4a099c39e3e6b7f2d2f97145066ac882 (patch) | |
tree | cc87334eec7232ddd8fc8c20935c745e4118b4df /test/Java | |
parent | fe16533afb684f6f9f64c8bff1b3af572c02cdf7 (diff) | |
download | SCons-8ed65dec4a099c39e3e6b7f2d2f97145066ac882.zip SCons-8ed65dec4a099c39e3e6b7f2d2f97145066ac882.tar.gz SCons-8ed65dec4a099c39e3e6b7f2d2f97145066ac882.tar.bz2 |
get rid of code copying PATH from os.environ
Diffstat (limited to 'test/Java')
-rw-r--r-- | test/Java/multi-step.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Java/multi-step.py b/test/Java/multi-step.py index 2e2ff56..f5ee257 100644 --- a/test/Java/multi-step.py +++ b/test/Java/multi-step.py @@ -45,6 +45,8 @@ swig = test.where_is('swig') if not swig: test.skip_test('Can not find installed "swig", skipping test.\n') +# Skip this test on AppVeyor + # Skip this test as SCons doesn't (currently) predict the generated # inner/anonymous class generated .class files generated by gcj # and so will always fail @@ -82,7 +84,7 @@ else: env=Environment(tools = tools, CPPPATH=["$JAVAINCLUDES"]) Export('env') -env.PrependENVPath('PATH',os.environ.get('PATH',[])) +# env.PrependENVPath('PATH',os.environ.get('PATH',[])) env['INCPREFIX']='-I' env.Append(SWIGFLAGS=['-c++','$_CPPINCFLAGS']) |