summaryrefslogtreecommitdiff
path: root/BUILDING.md
diff options
context:
space:
mode:
authorJR McEntee <jrmce12@gmail.com>2017-03-28 19:46:10 -0400
committerJames M Snell <jasnell@gmail.com>2017-04-04 10:14:24 -0700
commit7a5d07c7fbd43f3645d7f707fd6a98f2a251bdbd (patch)
treeb78aa81f4810e7280ddccf4eb84ff46c5e3d9400 /BUILDING.md
parent84a23391f60c0cbde8f78fd805b6fdef6861285f (diff)
downloadandroid-node-v8-7a5d07c7fbd43f3645d7f707fd6a98f2a251bdbd.tar.gz
android-node-v8-7a5d07c7fbd43f3645d7f707fd6a98f2a251bdbd.tar.bz2
android-node-v8-7a5d07c7fbd43f3645d7f707fd6a98f2a251bdbd.zip
doc: change Mac OS X to macOS
This update changes references to "Mac OS X", "OS X", and "OSX" in markdown files to "macOS". PR-URL: https://github.com/nodejs/node/pull/12106 Fixes: https://github.com/nodejs/node/issues/12086 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'BUILDING.md')
-rw-r--r--BUILDING.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/BUILDING.md b/BUILDING.md
index ffa233ab93..8bd791b333 100644
--- a/BUILDING.md
+++ b/BUILDING.md
@@ -73,7 +73,7 @@ Depending on host platform, the selection of toolchains may vary.
## Building Node.js on supported platforms
-### Unix / OS X
+### Unix / macOS
Prerequisites:
@@ -82,7 +82,7 @@ Prerequisites:
* Python 2.6 or 2.7
* GNU Make 3.81 or newer
-On OS X, you will also need:
+On macOS, you will also need:
* [Xcode](https://developer.apple.com/xcode/download/)
- You also need to install the `Command Line Tools` via Xcode. You can find
this under the menu `Xcode -> Preferences -> Downloads`
@@ -236,7 +236,7 @@ With the `--download=all`, this may download ICU if you don't have an
ICU in `deps/icu`. (The embedded `small-icu` included in the default
Node.js source does not include all locales.)
-##### Unix / OS X:
+##### Unix / macOS:
```console
$ ./configure --with-intl=full-icu --download=all
@@ -253,7 +253,7 @@ $ ./configure --with-intl=full-icu --download=all
The `Intl` object will not be available, nor some other APIs such as
`String.normalize`.
-##### Unix / OS X:
+##### Unix / macOS:
```console
$ ./configure --without-intl
@@ -265,7 +265,7 @@ $ ./configure --without-intl
> .\vcbuild without-intl
```
-#### Use existing installed ICU (Unix / OS X only):
+#### Use existing installed ICU (Unix / macOS only):
```console
$ pkg-config --modversion icu-i18n && ./configure --with-intl=system-icu
@@ -281,7 +281,7 @@ You can find other ICU releases at
Download the file named something like `icu4c-**##.#**-src.tgz` (or
`.zip`).
-##### Unix / OS X
+##### Unix / macOS
From an already-unpacked ICU:
```console