summaryrefslogtreecommitdiff
path: root/BUILDING.md
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2019-08-29 09:28:03 -0400
committerRich Trott <rtrott@gmail.com>2019-08-31 15:31:13 -0700
commit9ab1e07774b0c38a66e29f4b0b257ded8ee04d08 (patch)
tree4aa8dbb551d8baa96a6c22e44eb9a39e73f579bf /BUILDING.md
parentee8f02b0d752ecf2dfa044deb246e75283d1ca1d (diff)
downloadandroid-node-v8-9ab1e07774b0c38a66e29f4b0b257ded8ee04d08.tar.gz
android-node-v8-9ab1e07774b0c38a66e29f4b0b257ded8ee04d08.tar.bz2
android-node-v8-9ab1e07774b0c38a66e29f4b0b257ded8ee04d08.zip
doc: add blanks around code fences
Addresses Markdownlint MD031 rule warnings PR-URL: https://github.com/nodejs/node/pull/29366 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: David Carlier <devnexen@gmail.com>
Diffstat (limited to 'BUILDING.md')
-rw-r--r--BUILDING.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/BUILDING.md b/BUILDING.md
index 8725db965e..c56be2ad54 100644
--- a/BUILDING.md
+++ b/BUILDING.md
@@ -665,16 +665,19 @@ during configuration if the ICU version is too old.
#### Unix/macOS
From an already-unpacked ICU:
+
```console
$ ./configure --with-intl=[small-icu,full-icu] --with-icu-source=/path/to/icu
```
From a local ICU tarball:
+
```console
$ ./configure --with-intl=[small-icu,full-icu] --with-icu-source=/path/to/icu.tgz
```
From a tarball URL:
+
```console
$ ./configure --with-intl=full-icu --with-icu-source=http://url/to/icu.tgz
```