fpc: set MACOSX_DEPLOYMENT_TARGET to 10.9

Closes #5745.

Signed-off-by: ilovezfs <ilovezfs@icloud.com>
This commit is contained in:
Zhiming Wang 2016-10-09 14:43:04 -04:00 committed by ilovezfs
parent efb857ed7b
commit 7db2dfe36f

View file

@ -18,6 +18,11 @@ class Fpc < Formula
end
def install
# The bootstrap binary does not recognize anything above 10.9
# http://bugs.freepascal.org/view.php?id=30711
# https://github.com/Homebrew/homebrew-core/issues/5732
ENV["MACOSX_DEPLOYMENT_TARGET"] = "10.9"
fpc_bootstrap = buildpath/"bootstrap"
resource("bootstrap").stage { fpc_bootstrap.install Dir["*"] }