Skip to content

Commit

Permalink
Addendum to last commit (Linux mysql fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
jushar committed Jul 1, 2017
1 parent 3ccaadb commit 6fdb55c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -51,12 +51,12 @@ If you have problems resolving the required dependencies or want maximum compati

64-bit target:
```
docker run -it -v `pwd`:/mtasa-blue multitheftauto/mtasa-blue
docker run -it -v `pwd`:/build multitheftauto/mtasa-blue
```

32-bit target:
```
docker run -it -v `pwd`:/mtasa-blue -e BUILD_BITS=32 multitheftauto/mtasa-blue
docker run -it -v `pwd`:/build -e BUILD_BITS=32 multitheftauto/mtasa-blue
```
If the current directory is a valid git repository clone, it will use this as the build source. If not, it will create a (shallow) clone. After compiling, you will find the resulting binaries in `./Bin`.

Expand Down
2 changes: 1 addition & 1 deletion premake5.lua
Expand Up @@ -12,7 +12,7 @@ if ci and ci:lower() == "true" then
else
CI_BUILD = false
end
local GLIBC_COMPAT = os.getenv("GLIBC_COMPAT") == "true"
GLIBC_COMPAT = os.getenv("GLIBC_COMPAT") == "true"

workspace "MTASA"
configurations {"Debug", "Release", "Nightly"}
Expand Down

0 comments on commit 6fdb55c

Please sign in to comment.