Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
compiler-java: Fixup for SDK overrides
Browse files Browse the repository at this point in the history
Part of #5734
  • Loading branch information
tombentley committed Nov 17, 2015
1 parent c55ccf7 commit 8e0075a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ public void ceylonSdk() throws Exception {

CeylonDocTool tool = tool(Arrays.asList(new File("../../ceylon-sdk/source")),
new String[0],
"../ceylon-sdk/overrides.xml",
"../../ceylon-sdk/overrides.xml",
Collections.<File>emptyList(),
Arrays.asList(fullModuleNames), true, false, false);
tool.setIncludeNonShared(false);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ private void compileSDKOnly(String[] modules, String[] extraModules){
CeyloncTaskImpl task = (CeyloncTaskImpl) compiler.getTask(null, fileManager, errorCollector,
Arrays.asList("-sourcepath", sourceDir, "-d", "build/classes-sdk",
"-suppress-warnings", "ceylonNamespace",
"-overrides", "../ceylon-sdk/overrides.xml",
"-overrides", "../../ceylon-sdk/overrides.xml",
"-cp", getClassPathAsPath()),
moduleNames, null);
Boolean result = task.call();
Expand Down

0 comments on commit 8e0075a

Please sign in to comment.