fpc: set MACOSX_DEPLOYMENT_TARGET to 10.9
Closes #5745. Signed-off-by: ilovezfs <ilovezfs@icloud.com>
This commit is contained in:
parent
efb857ed7b
commit
7db2dfe36f
1 changed files with 5 additions and 0 deletions
|
@ -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["*"] }
|
||||
|
||||
|
|
Loading…
Reference in a new issue