diff options
author | Araq <rumpf_a@web.de> | 2012-12-15 14:54:28 -0800 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-12-15 14:54:28 -0800 |
commit | 4b87ddb2bfa07c1db25a65c57f539f9aa150d07d (patch) | |
tree | 3dbb5b4a22823e28e87d3b9c4decaa309f284c5c | |
parent | 61a43979e6cf8a5f7925a001a56075be232628dc (diff) | |
parent | da825a0fe2842468f7e925de1f088e62c74bcd9b (diff) | |
download | Nim-4b87ddb2bfa07c1db25a65c57f539f9aa150d07d.tar.gz |
Merge pull request #279 from keitahaga/build-instruction-fix
Fix build instructions
-rw-r--r-- | readme.md | 6 | ||||
-rwxr-xr-x | readme.txt | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/readme.md b/readme.md index fe4542b56..d5cb35820 100644 --- a/readme.md +++ b/readme.md @@ -34,7 +34,9 @@ If you are on a fairly modern *nix system, the following steps should work: ``` $ git clone git://github.com/Araq/Nimrod.git $ cd Nimrod -$ unzip build/csources.zip +$ cd build +$ unzip csources.zip +$ cd .. $ ./build.sh $ bin/nimrod c koch $ ./koch boot -d:release @@ -61,4 +63,4 @@ developed with Nimrod, allowing you to create commercial applications. Read copying.txt for more details. Copyright (c) 2004-2012 Andreas Rumpf. -All rights reserved. \ No newline at end of file +All rights reserved. diff --git a/readme.txt b/readme.txt index fe4542b56..d5cb35820 100755 --- a/readme.txt +++ b/readme.txt @@ -34,7 +34,9 @@ If you are on a fairly modern *nix system, the following steps should work: ``` $ git clone git://github.com/Araq/Nimrod.git $ cd Nimrod -$ unzip build/csources.zip +$ cd build +$ unzip csources.zip +$ cd .. $ ./build.sh $ bin/nimrod c koch $ ./koch boot -d:release @@ -61,4 +63,4 @@ developed with Nimrod, allowing you to create commercial applications. Read copying.txt for more details. Copyright (c) 2004-2012 Andreas Rumpf. -All rights reserved. \ No newline at end of file +All rights reserved. |