summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@fedoraproject.org>2009-11-25 22:46:07 +0000
committerBill Nottingham <notting@fedoraproject.org>2009-11-25 22:46:07 +0000
commit3f240bad66f63a955949915facd31d37207bfc73 (patch)
tree5ba16d6ad0d27c8dba249d60f48a7b43728ded73
parent161ff922b1a09d2bcd7d3eedc504e6e2a547c89c (diff)
downloadbogofilter_EL6-3f240bad66f63a955949915facd31d37207bfc73.tar.gz
Fix typo that causes a failure to update the common directory. (relengF-13-startF-13-split
#2781)
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 31306ae..bb23740 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ NAME := bogofilter
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
-for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
+for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))