diff options
author | schmonz <schmonz@pkgsrc.org> | 2013-08-15 14:32:40 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2013-08-15 14:32:40 +0000 |
commit | b2926e9c5fb49d5be83b975c6fe0ffe5ad906d1c (patch) | |
tree | 97e2f7df2023a8c52e7b94a4c9690b700a9018fc | |
parent | 4b2cadcc887e6370ea90534690e65d9b6dd67309 (diff) | |
download | pkgsrc-b2926e9c5fb49d5be83b975c6fe0ffe5ad906d1c.tar.gz |
Use GNU find on SunOS at install time, so that "find -maxdepth" and
"find -regex" can work.
-rw-r--r-- | www/ikiwiki/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/ikiwiki/Makefile b/www/ikiwiki/Makefile index fa3b0e87be2..5ceb5dfb4af 100644 --- a/www/ikiwiki/Makefile +++ b/www/ikiwiki/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.111 2013/07/11 11:55:47 schmonz Exp $ +# $NetBSD: Makefile,v 1.112 2013/08/15 14:32:40 schmonz Exp $ # DISTNAME= ikiwiki_3.20130711 @@ -67,6 +67,12 @@ TEST_TARGET= test pre-configure: find ${WRKSRC} -type f -name '*.orig' -print | xargs rm -f +.include "../../mk/bsd.prefs.mk" + +.if ${OPSYS} == "SunOS" +TOOLS_PLATFORM.find= # empty, to force GNU find from pkgsrc findutils +.endif + .include "../../lang/perl5/module.mk" .include "../../lang/python/application.mk" .include "../../mk/bsd.pkg.mk" |