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 | f767f11c219fecf6a73adda6ef7bd4d83833be1a (patch) | |
tree | 97e2f7df2023a8c52e7b94a4c9690b700a9018fc /www/ikiwiki/Makefile | |
parent | 6e5378c865e821a6d1088ff08853a50db50ee8a1 (diff) | |
download | pkgsrc-f767f11c219fecf6a73adda6ef7bd4d83833be1a.tar.gz |
Use GNU find on SunOS at install time, so that "find -maxdepth" and
"find -regex" can work.
Diffstat (limited to 'www/ikiwiki/Makefile')
-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" |