From 8ed65dec4a099c39e3e6b7f2d2f97145066ac882 Mon Sep 17 00:00:00 2001 From: William Deegan Date: Mon, 5 Nov 2018 21:06:45 -0500 Subject: get rid of code copying PATH from os.environ --- test/Java/multi-step.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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']) -- cgit v0.12