Emulator: update mac instructions to include gnu grep (#7266)

Since `grep -z` is not available on posix grep
reviewable/pr7281/r1
Rex Kerr 3 years ago committed by GitHub
parent d8fc28df97
commit 286a6b4883
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -41,12 +41,12 @@ Install the prerequisites using [Homebrew](https://brew.sh/):
```
brew install nasm ragel binutils coreutils libtool autoconf automake cmake makedepend \
sdl2 lua@5.1 luarocks gettext pkg-config wget gnu-getopt
sdl2 lua@5.1 luarocks gettext pkg-config wget gnu-getopt grep
```
You will also have to ensure Homebrew's gettext & gnu-getopt are in your path, e.g., via
You will also have to ensure Homebrew's gettext, gnu-getopt, & grep are in your path, e.g., via
```
export PATH="$(brew --prefix)/opt/gettext/bin:$(brew --prefix)/opt/gnu-getopt/bin:${PATH}"
export PATH="$(brew --prefix)/opt/gettext/bin:$(brew --prefix)/opt/gnu-getopt/bin:$(brew --prefix)/opt/grep/libexec/gnubin:${PATH}"
```
See also `brew info gettext` for details on how to make that permanent in your shell.
@ -62,7 +62,6 @@ export MACOSX_DEPLOYMENT_TARGET=10.09
```
*Note:* On Catalina (10.15), you will currently *NOT* want to deploy for `10.15`, as [XCode is currently broken in that configuration](https://forums.developer.apple.com/thread/121887)! (i.e., deploy for `10.14` instead).
## Getting the source

Loading…
Cancel
Save