pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: [pkgsrc-2017Q1] pkgsrc/mk/tools
Module Name: pkgsrc
Committed By: bsiegert
Date: Thu May 11 17:40:24 UTC 2017
Modified Files:
pkgsrc/mk/tools [pkgsrc-2017Q1]: tools.Darwin.mk
Log Message:
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.
To generate a diff of this commit:
cvs rdiff -u -r1.56 -r1.56.8.1 pkgsrc/mk/tools/tools.Darwin.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/mk/tools/tools.Darwin.mk
diff -u pkgsrc/mk/tools/tools.Darwin.mk:1.56 pkgsrc/mk/tools/tools.Darwin.mk:1.56.8.1
--- pkgsrc/mk/tools/tools.Darwin.mk:1.56 Mon Apr 11 04:49:41 2016
+++ pkgsrc/mk/tools/tools.Darwin.mk Thu May 11 17:40:24 2017
@@ -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.expr?= /bin/expr
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