Missing = characters (#2676)

This commit is contained in:
strophy 2019-02-01 17:07:39 +08:00 committed by UdjinM6
parent 088525bde3
commit 31755267a8
2 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@ $ make HOST=x86_64-apple-darwin11 -j4
When building Dash Core, use
```bash
$ ./configure --prefix `pwd`/depends/x86_64-apple-darwin11
$ ./configure --prefix=`pwd`/depends/x86_64-apple-darwin11
```
Windows 64bit/32bit Cross-compilation
@ -68,7 +68,7 @@ $ make HOST=x86_64-w64-mingw32 -j4
When building Dash Core, use
```bash
$ ./configure --prefix `pwd`/depends/x86_64-w64-mingw32
$ ./configure --prefix=`pwd`/depends/x86_64-w64-mingw32
```
These commands will build for Windows 64bit. If you want to compile for 32bit,
@ -91,5 +91,5 @@ $ make HOST=arm-linux-gnueabihf -j4
When building Dash Core, use
```bash
$ ./configure --prefix `pwd`/depends/arm-linux-gnueabihf
$ ./configure --prefix=`pwd`/depends/arm-linux-gnueabihf
```

View File

@ -39,7 +39,7 @@ Building Dash Core
```bash
$ ./autogen.sh
$ ./configure --prefix `pwd`/depends/<host>
$ ./configure --prefix=`pwd`/depends/<host>
$ make
$ make install # optional
```