Skip to content

Instantly share code, notes, and snippets.

@colomon
Created August 24, 2014 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colomon/c30f1ea8c4d67054bff6 to your computer and use it in GitHub Desktop.
Save colomon/c30f1ea8c4d67054bff6 to your computer and use it in GitHub Desktop.
replace
run 'make install';
with
if (system 'make install') {
if ($^O eq "darwin") {
run 'make install'; # try again because OS X make is stupid
} else {
die "Failed running make install";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment