summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorJean Delvare <jdelvare@suse.de>2013-05-24 15:13:55 +0200
committerJean Delvare <jdelvare@suse.de>2013-05-24 15:13:55 +0200
commitbc340b709b866f50273d4ef125e1ae3cbc44c6ac (patch)
treebccc8a39c56c7d4957e04fbfb4239acdd516c2a5 /Makefile.in
parent8ebb056d26ec43e94a2a7d2a5fe0b9a1c227f658 (diff)
downloadquilt-bc340b709b866f50273d4ef125e1ae3cbc44c6ac.tar.gz
Makefile: Fix "find -perm" usage
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.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index cdb5351..cb48741 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -274,7 +274,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)