pkgsrc/devel/quilt/patches/patch-aa
apb 31a3fe5e08 Use a portable construct instead of "find ... -perm +111"; quiets
a build-time error message (which did not abort the build).

PKGREVISION = 1.
2008-01-08 08:28:58 +00:00

13 lines
500 B
Text

$NetBSD: patch-aa,v 1.1 2008/01/08 08:28:59 apb Exp $
--- Makefile.in.orig 2008-01-07 19:25:20.000000000 +0200
+++ Makefile.in
@@ -272,7 +272,7 @@ Makefile : Makefile.in configure
@echo "Please run ./configure"
@false
-compat_leftover := $(filter-out $(COMPAT),$(shell $(FIND) compat -maxdepth 1 -type f -perm +111))
+compat_leftover := $(filter-out $(COMPAT),$(shell $(FIND) compat -maxdepth 1 -type f '(' -perm -100 -o -perm -010 -o -perm -001 ')'))
.PHONY :: compat
compat :: $(COMPAT)