Skip to content

Commit 970ebd6

Browse files
committed
No such thing as MACOSX_DEVELOPMENT_TARGET.
This appears to be a typo that has been with us since 69625aa 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
1 parent f8591e0 commit 970ebd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hints/darwin.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ case "$osvers" in # Note: osvers is the kernel version, not the 10.x
294294
[7-9].*) # OS X 10.3.x - 10.5.x
295295
lddlflags="${ldflags} -bundle -undefined dynamic_lookup"
296296
case "$ld" in
297-
*MACOSX_DEVELOPMENT_TARGET*) ;;
297+
*MACOSX_DEPLOYMENT_TARGET*) ;;
298298
*) ld="env MACOSX_DEPLOYMENT_TARGET=10.3 ${ld}" ;;
299299
esac
300300
;;

0 commit comments

Comments
 (0)