diff options
author | Craig A. Berry <craigberry@mac.com> | 2016-05-19 06:35:49 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2016-05-19 07:46:21 -0500 |
commit | 970ebd6f29eaeb8f281ee05c3de6b064ac181673 (patch) | |
tree | 5ccbd6e418b141b9058e8322e69841c7ef571c53 /hints | |
parent | f8591e0813fb09e721ebd16e2001516b6c4e7356 (diff) | |
download | perl-970ebd6f29eaeb8f281ee05c3de6b064ac181673.tar.gz |
No such thing as MACOSX_DEVELOPMENT_TARGET.
This appears to be a typo that has been with us since 69625aa92a9
and the real name is MACOSX_DEPLOYMENT_TARGET.
So do the same thing the MacPorts folks have been doing, meaning
this is just the "fix-ld-modification.patch" from:
https://trac.macports.org/browser/trunk/dports/lang/perl5/files/5.24?rev=148407
Diffstat (limited to 'hints')
-rw-r--r-- | hints/darwin.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hints/darwin.sh b/hints/darwin.sh index afadf539ec..e1cd91b013 100644 --- a/hints/darwin.sh +++ b/hints/darwin.sh @@ -294,7 +294,7 @@ case "$osvers" in # Note: osvers is the kernel version, not the 10.x [7-9].*) # OS X 10.3.x - 10.5.x lddlflags="${ldflags} -bundle -undefined dynamic_lookup" case "$ld" in - *MACOSX_DEVELOPMENT_TARGET*) ;; + *MACOSX_DEPLOYMENT_TARGET*) ;; *) ld="env MACOSX_DEPLOYMENT_TARGET=10.3 ${ld}" ;; esac ;; |