Skip to content

Commit 87a479b

Browse files
committed
docs: Mac OS X renamed to macOS
1 parent 199af69 commit 87a479b

File tree

10 files changed

+21
-22
lines changed

10 files changed

+21
-22
lines changed

doc/MAINTAINER_GUIDE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
* Ensure `release` and `stable` branches merged to `master`
1414
* Check compatibility with latest stackage snapshot
15-
* Ensure integration tests pass on a representative Windows, Mac OS X, and Linux (Linux
15+
* Ensure integration tests pass on a representative Windows, macOS, and Linux (Linux
1616
is handled by Jenkins automatically): `stack install --pedantic && stack test
1717
--pedantic --flag stack:integration-tests` . The actual release script will
1818
perform a more thorough test for every platform/variant prior to uploading, so
@@ -85,7 +85,7 @@ for requirements to perform the release, and more details about the tool.
8585
* On a machine with Vagrant installed:
8686
* Run `etc/scripts/vagrant-releases.sh`
8787

88-
* On Mac OS X:
88+
* On macOS:
8989
* Run `etc/scripts/osx-release.sh`
9090

9191
* On Windows:
@@ -219,7 +219,7 @@ set up.
219219

220220
## Setting up an ARM VM for releases
221221

222-
These instructions assume the host system is running OS X. Some steps will vary
222+
These instructions assume the host system is running macOS. Some steps will vary
223223
with a different host OS.
224224

225225
### Install qemu on host
@@ -365,7 +365,7 @@ Edit `~/.cabal/config`, and set `executable-stripping: False` and
365365
[stack-setup-2.yaml](https://github.com/fpco/stackage-content/blob/master/stack/stack-setup-2.yaml)
366366
for the ones we used in the last GHC release).
367367

368-
In the case of OS X, repackage the `.xz` bindist as a `.bz2`, since OS X does
368+
In the case of macOS, repackage the `.xz` bindist as a `.bz2`, since macOS does
369369
not include `xz` by default or provide an easy way to install it.
370370

371371
* Build any additional required bindists (see below for instructions)

doc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ For detailed instructions and downloads, instructions are available by
2727
operating system/distribution:
2828

2929
* [Windows](install_and_upgrade.md#windows)
30-
* [Mac OS X](install_and_upgrade.md#mac-os-x)
30+
* [macOS](install_and_upgrade.md#mac-os-x)
3131
* [Ubuntu](install_and_upgrade.md#ubuntu)
3232
* [Debian](install_and_upgrade.md#debian)
3333
* [CentOS / Red Hat / Amazon Linux](install_and_upgrade.md#centos)

doc/docker_integration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ distribution
2727
a 64-bit kernel. If you do not already have one, we suggest Ubuntu 14.04
2828
("trusty") since this is what we test with.
2929

30-
**Mac OS X**: [Docker for Mac](https://docs.docker.com/docker-for-mac/) is the
31-
supported way to use Docker integration on OS X (the older Docker Machine
32-
(boot2docker) approach to using Docker on OS X is not supported due to issues
30+
**macOS**: [Docker for Mac](https://docs.docker.com/docker-for-mac/) is the
31+
supported way to use Docker integration on macOS (the older Docker Machine
32+
(boot2docker) approach to using Docker on macOS is not supported due to issues
3333
with host volume mounting that make Stack nearly unusable for anything but the
3434
most trivial projects).
3535

doc/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ system libraries.
474474
475475
## How can I make `stack` aware of my custom SSL certificates?
476476
477-
### OS X
477+
### macOS
478478
479479
In principle, you can use the following command to add a certificate to your system certificate keychain:
480480

doc/install_and_upgrade.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,9 @@ NOTE: These executables have been built and tested on a Windows 7, 8.1, and 10
6060
been tested. If you do test, please edit and update this page to indicate as
6161
such.
6262

63-
## Mac OS X
63+
## macOS
6464

65-
66-
We generally test on the current version of Mac OS X, but Stack is known to work
65+
We generally test on the current version of macOS, but Stack is known to work
6766
on El Capitan, Yosemite and Mavericks as well, and may also work on older
6867
versions (YMMV).
6968

@@ -76,7 +75,7 @@ information.
7675
### Manual download
7776

7877
* Download the latest release:
79-
* [Mac OS X 64-bit](https://www.stackage.org/stack/osx-x86_64)
78+
* [macOS 64-bit](https://www.stackage.org/stack/osx-x86_64)
8079
* Extract the archive and place `stack` somewhere on your `$PATH` (see
8180
[Path section below](#path))
8281
* Now you can run `stack` from the terminal.

doc/nix_integration.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ If `enable:` is omitted or set to `false`, you can still build in a nix-shell by
119119
passing the `--nix` flag to stack, for instance `stack --nix build`. Passing
120120
any `--nix*` option to the command line will do the same.
121121

122-
**Known limitation on OS X:** currently, `stack --nix ghci` fails on
123-
OS X, due to a bug in GHCi when working with external shared
122+
**Known limitation on macOS:** currently, `stack --nix ghci` fails on
123+
macOS, due to a bug in GHCi when working with external shared
124124
libraries.
125125

126126
### The Nix shell
@@ -134,8 +134,8 @@ build environment to facilitate reproducibility. To override this
134134
behaviour, add `pure: false` to your `stack.yaml` or pass the
135135
`--no-nix-pure` option to the command line.
136136

137-
**Note:** On OS X shells are non-pure by default currently. This is
138-
due soon to be resolved locale issues. So on OS X you'll need to be
137+
**Note:** On macOS shells are non-pure by default currently. This is
138+
due soon to be resolved locale issues. So on macOS you'll need to be
139139
a bit more careful to check that you really have listed all
140140
dependencies.
141141

doc/travis-complex.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,12 @@ matrix:
9090
compiler: ": #stack nightly"
9191
addons: {apt: {packages: [libgmp-dev]}}
9292

93-
# Build on OS X in addition to Linux
93+
# Build on macOS in addition to Linux
9494
- env: BUILD=stack ARGS=""
9595
compiler: ": #stack default osx"
9696
os: osx
9797

98-
# Travis includes an OS X which is incompatible with GHC 7.8.4
98+
# Travis includes an macOS which is incompatible with GHC 7.8.4
9999
#- env: BUILD=stack ARGS="--resolver lts-2"
100100
# compiler: ": #stack 7.8.4 osx"
101101
# os: osx

doc/travis_ci.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ready to be used on your projects:
1313
is intended for projects that need to support multiple GHC versions
1414
and multiple OSes, such as open source libraries to be released to
1515
Hackage. It tests against cabal-install, as well as Stack on Linux
16-
and OS X. The configuration is significantly more involved to allow
16+
and macOS. The configuration is significantly more involved to allow
1717
for all of this branching behavior.
1818

1919
__NOTE__: It is likely going to be necessary to modify this configuration to

etc/scripts/get-stack.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ do_centos_install() {
294294
fi
295295
}
296296

297-
# Attempts to install on Mac OS X.
297+
# Attempts to install on macOS.
298298
# If 'brew' exists, installs using Homebrew. Otherwise, installs
299299
# the generic bindist.
300300
do_osx_install() {

src/test/Stack/Untar/createFiles.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Name for GNU tar.
66
TAR=tar
77
CHOWN=chown
8-
# Needed on my OS X install with HomeBrew.
8+
# Needed on my macOS install with HomeBrew.
99
#TAR=gtar
1010
#CHOWN=gchown
1111

0 commit comments

Comments
 (0)