summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2006-01-30 10:47:56 +0000
committerAndreas Gruenbacher <agruen@suse.de>2006-01-30 10:47:56 +0000
commit999d86cf39b39d1c02fd318f777be7e9491bea9e (patch)
tree685f02f7151c73e20dc37f08f039dd1e620587f7 /Makefile.in
parente220a8894cf73e07b2ef7221e5337979174d4a12 (diff)
downloadquilt-999d86cf39b39d1c02fd318f777be7e9491bea9e.tar.gz
- Makefile.in: The trailing slash in `find compat/' is causing OSX
/usr/bin/find to print 'compat//sed', etc. As a result, they are appearing in compat_leftover, being removed in the middle of the build, causing errors during the construction of $(DOC).
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 e12940e..d6a75cd 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -268,7 +268,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 +111))
.PHONY :: compat
compat :: $(COMPAT)