Skip to content

Commit

Permalink
Update to create working linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
StellaArtois committed Feb 28, 2016
1 parent 7ac0d09 commit c3cc573
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Install build prerequisites
- Python 2.7.x (NOT 3.x)
- Scala is NOT required (and currently for Windows should NOT be present on your path to avoid
build issues)
- On Linux, install astyle or the patching process will fail.

Installing
----------
Expand Down
6 changes: 3 additions & 3 deletions idea.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,9 @@ def __init__(self, mainClassName, rootDir, mcpDir, nativeDirs, programParams, mo
# Add vm args

# Format natives path string
pathSeparator = ';'
if _platform == "darwin":
pathSeparator = ':'
pathSeparator = ':'
if _platform == "win32":
pathSeparator = ';'
vm_args = '-Djava.library.path=\"'
firstEntry = True

Expand Down

0 comments on commit c3cc573

Please sign in to comment.