From 5a491540ee4ec1761ec6f0d89d4d38c13a99cde3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Cam=20Sa=C3=BCl?= <cammsaul@gmail.com>
Date: Thu, 4 Aug 2016 16:00:06 -0700
Subject: [PATCH] clarify OS X release steps :yum: [ci skip]

---
 docs/developers-guide-osx.md | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/docs/developers-guide-osx.md b/docs/developers-guide-osx.md
index 16483285229..f6c83196296 100644
--- a/docs/developers-guide-osx.md
+++ b/docs/developers-guide-osx.md
@@ -31,7 +31,11 @@
    # Install libcurl (needed by WWW::Curl::Simple (I think))
    brew install curl && brew link curl --force
    
-   # The new version of LLVM is snippy so have CPAN pass the Makefiles a flag that will tell it not to barf
+   # The new version of LLVM is snippy so have CPAN pass compiler flags to fix errors
+   # (Make sure this file exists first. If you didn't upgrade Perl in the step above, 
+   # it might be in a different location; perhaps called "Config.pm". 
+   # You may need to run "cpan" (no arguments) to generate an appropriate initial config. 
+   # As above, you can go with the defaults).
    sed -i '' -e "s/'make_arg' => q\[\]/'make_arg' => q\[CCFLAGS=\"-Wno-return-type\"\]/" ~/.cpan/CPAN/MyConfig.pm
 
    # Install Perl modules used by ./bin/osx-setup and ./bin/osx-release
@@ -58,6 +62,7 @@ brew install awscli
 
 # Configure AWS Credentials
 # You'll need credentials that give you permission to write the metabase-osx-releases S3 bucket.
+# You just need the access key ID and secret key; use the defaults for locale and other options.
 aws configure --profile metabase
 
 # Copy & Edit Config file
-- 
GitLab