Skip to content

Commit 6fdb55c

Browse files
committed
Addendum to last commit (Linux mysql fix)
1 parent 3ccaadb commit 6fdb55c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ If you have problems resolving the required dependencies or want maximum compati
5151

5252
64-bit target:
5353
```
54-
docker run -it -v `pwd`:/mtasa-blue multitheftauto/mtasa-blue
54+
docker run -it -v `pwd`:/build multitheftauto/mtasa-blue
5555
```
5656

5757
32-bit target:
5858
```
59-
docker run -it -v `pwd`:/mtasa-blue -e BUILD_BITS=32 multitheftauto/mtasa-blue
59+
docker run -it -v `pwd`:/build -e BUILD_BITS=32 multitheftauto/mtasa-blue
6060
```
6161
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`.
6262

premake5.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if ci and ci:lower() == "true" then
1212
else
1313
CI_BUILD = false
1414
end
15-
local GLIBC_COMPAT = os.getenv("GLIBC_COMPAT") == "true"
15+
GLIBC_COMPAT = os.getenv("GLIBC_COMPAT") == "true"
1616

1717
workspace "MTASA"
1818
configurations {"Debug", "Release", "Nightly"}

0 commit comments

Comments
 (0)