diff options
author | obache <obache@pkgsrc.org> | 2014-07-21 00:25:48 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2014-07-21 00:25:48 +0000 |
commit | 00f0772281c2d623e5976ffd4d8ee7809f5f2ac2 (patch) | |
tree | 3cc55774eabcafb010d8a3d1bce440114cb98a2d /mk/tools | |
parent | 4fdd39d7e767a45179df0e6c76dd6cd3794fe429 (diff) | |
download | pkgsrc-00f0772281c2d623e5976ffd4d8ee7809f5f2ac2.tar.gz |
builtin ftp is compatible with tnftp on Snow Leopard and later.
Diffstat (limited to 'mk/tools')
-rw-r--r-- | mk/tools/tools.Darwin.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mk/tools/tools.Darwin.mk b/mk/tools/tools.Darwin.mk index 4b196d75b7e..281e4b32e91 100644 --- a/mk/tools/tools.Darwin.mk +++ b/mk/tools/tools.Darwin.mk @@ -1,4 +1,4 @@ -# $NetBSD: tools.Darwin.mk,v 1.51 2014/03/06 07:34:20 uebayasi Exp $ +# $NetBSD: tools.Darwin.mk,v 1.52 2014/07/21 00:25:48 obache Exp $ # # System-supplied tools for the Darwin (Mac OS X) operating system. @@ -44,7 +44,9 @@ TOOLS_PLATFORM.fgrep?= /usr/bin/fgrep TOOLS_PLATFORM.file?= /usr/bin/file TOOLS_PLATFORM.find?= /usr/bin/find TOOLS_PLATFORM.flex?= /usr/bin/flex +.if empty(MACHINE_PLATFORM:MDarwin-[0-9].*-*) TOOLS_PLATFORM.ftp?= /usr/bin/ftp +.endif .if empty(MACHINE_PLATFORM:MDarwin-[0-8].*-*) TOOLS_PLATFORM.gmake?= /usr/bin/gnumake TOOLS_PLATFORM.gm4?= /usr/bin/gm4 |