From 502a0959f31d32befa2dc9705f28b97d755beb27 Mon Sep 17 00:00:00 2001 From: Neil Crosby Date: Tue, 2 Oct 2018 12:33:46 +0100 Subject: [PATCH] Instruct OSX developers to install autoconf (#103) When running `tox` on OSX as instructed at https://developers.home-assistant.io/docs/en/development_testing.html an error is received stating `error: [Errno 2] No such file or directory: 'autoconf': 'autoconf'`. By installing `autoconf` via `homebrew`, this error goes away, and the `tox` tests pass. Telling OSX developers to install `autoconf` at this point in the development environment setup procedure (rather than calling it out on the testing page) seemed to make sense to me. --- docs/development_environment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/development_environment.md b/docs/development_environment.md index b94878e1..e69c6031 100644 --- a/docs/development_environment.md +++ b/docs/development_environment.md @@ -60,7 +60,7 @@ $ pip install --upgrade setuptools Install [Homebrew](https://brew.sh/), then use that to install Python 3: ```bash -$ brew install python3 +$ brew install python3 autoconf ``` ## Setup Local Repository