pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/pkgsrc-2017Q1]: pkgsrc/mk/tools Pullup ticket #5405 - requested by sevan
details: https://anonhg.NetBSD.org/pkgsrc/rev/b228d9ad013a
branches: pkgsrc-2017Q1
changeset: 360365:b228d9ad013a
user: bsiegert <bsiegert%pkgsrc.org@localhost>
date: Thu May 11 17:40:24 2017 +0000
description:
Pullup ticket #5405 - requested by sevan
mk/tools/tools.Darwin.mk: build fix for Python eggs
Revisions pulled up:
- mk/tools/tools.Darwin.mk 1.57
---
Module Name: pkgsrc
Committed By: sevan
Date: Sat May 6 16:33:55 UTC 2017
Modified Files:
pkgsrc/mk/tools: tools.Darwin.mk
Log Message:
The version of find(1) included in Darwin did not support {} + being
passed to
the exec option up until version 9 (Leopard). sysutils/findutils should
be used on
prior releases.
This resolves packaging Python modules which utilise lang/python/egg.mk.
find(1)
is called here with '{}' +; passed to exec option.
diffstat:
mk/tools/tools.Darwin.mk | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diffs (19 lines):
diff -r 77f9a8b2e322 -r b228d9ad013a mk/tools/tools.Darwin.mk
--- a/mk/tools/tools.Darwin.mk Sat May 06 15:44:15 2017 +0000
+++ b/mk/tools/tools.Darwin.mk Thu May 11 17:40:24 2017 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: tools.Darwin.mk,v 1.56 2016/04/11 04:49:41 dbj Exp $
+# $NetBSD: tools.Darwin.mk,v 1.56.8.1 2017/05/11 17:40:24 bsiegert Exp $
#
# System-supplied tools for the Darwin (Mac OS X) operating system.
@@ -42,7 +42,9 @@
TOOLS_PLATFORM.false?= false # shell builtin
TOOLS_PLATFORM.fgrep?= /usr/bin/fgrep
TOOLS_PLATFORM.file?= /usr/bin/file
+.if empty(MACHINE_PLATFORM:MDarwin-[0-8].*-*)
TOOLS_PLATFORM.find?= /usr/bin/find
+.endif
TOOLS_PLATFORM.flex?= /usr/bin/flex
TOOLS_PLATFORM.ftp?= /usr/bin/ftp
.if empty(MACHINE_PLATFORM:MDarwin-[0-8].*-*)
Home |
Main Index |
Thread Index |
Old Index