quilt/quilt-makefile-fix-find-perm-usage.patch
Jean Delvare 1589b21f92 - quilt-makefile-fix-find-perm-usage.patch: Makefile: Fix "find
-perm" usage.
- quilt-makefile-fix-configure-with-xargs.patch: Makefile: Fix
  support for "./configure --with-xargs".
- quilt-find-quoting-style.patch: delete.test: Cope with new
  quoting style in find error message.

OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/quilt?expand=0&rev=68
2013-09-30 12:38:29 +00:00

28 lines
838 B
Diff

From: Jean Delvare <jdelvare@suse.de>
Date: Fri, 24 May 2013 13:13:55 +0000
Subject: Makefile: Fix "find -perm" usage
Git-commit: bc340b709b866f50273d4ef125e1ae3cbc44c6ac
Support for obsolete find -perm +MODE syntax was removed from GNU
findutils by commit
v4.5.10-144-g90f0c5d24153ad3327edd6f2249fc95a5cfb72e0.
Reported by Dmitry V. Levin.
Also -maxdepth is not portable and not needed so drop it.
---
Makefile.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/Makefile.in
+++ b/Makefile.in
@@ -277,7 +277,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 -type f -perm -0100))
.PHONY :: compat
compat :: $(COMPAT)