This is an automated email from the ASF dual-hosted git repository.
vongosling pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-client-python.git
The following commit(s) were added to refs/heads/master by this push:
new 3ab2be9 Update Introduction.md
3ab2be9 is described below
commit 3ab2be9cffe7e9eb6f0dea9e0ff9c3ef3498ce83
Author: von gosling <[email protected]>
AuthorDate: Thu Dec 6 16:21:36 2018 +0800
Update Introduction.md
---
doc/Introduction.md | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/doc/Introduction.md b/doc/Introduction.md
index e19ecaa..b746ee0 100644
--- a/doc/Introduction.md
+++ b/doc/Introduction.md
@@ -32,7 +32,7 @@
```
3. [librocketmq](https://github.com/apache/rocketmq-client-cpp), choose
one method below:
- - make and install the rocketmq library manually from
[here](https://github.com/apache/rocketmq-client-cpp)
+ - make and install the RocketMQ library manually from
[here](https://github.com/apache/rocketmq-client-cpp)
- quick install
```
@@ -46,10 +46,9 @@
* Make and install module manually
-
- 1. Using Dynamic Rocketmq and boost python libraries are recommended.
+ 1. Using Dynamic RocketMQ and boost python libraries are recommended.
```
- - mkdir build
+ - mkdir build && cd build
- cmake ../ -DBoost_USE_STATIC_LIBS=OFF -DROCKETMQ_USE_STATIC_LIBS=OFF
- make
- make install
@@ -57,7 +56,7 @@
2. Also you can using static libraries.
```
- - mkdir build
+ - mkdir build & cd build
- cmake ../ -DBoost_USE_STATIC_LIBS=ON -DROCKETMQ_USE_STATIC_LIBS=ON
- make
- make install