summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@fedoraproject.org>2009-11-25 22:47:34 +0000
committerBill Nottingham <notting@fedoraproject.org>2009-11-25 22:47:34 +0000
commita2b57e300bc04451496fa769be5a709efdb98c61 (patch)
tree0a38c083b68857c6d59f049e8fd0736a24f614a6
parent04a4c35494ff25c57100361cebff55d142e3f267 (diff)
downloadcollectd-a2b57e300bc04451496fa769be5a709efdb98c61.tar.gz
collectd-a2b57e300bc04451496fa769be5a709efdb98c61.tar.xz
collectd-a2b57e300bc04451496fa769be5a709efdb98c61.zip
Fix typo that causes a failure to update the common directory. (releng
#2781)
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f2fbb4c..4df43a1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
# Makefile for source rpm: collectd
-# $Id$
+# $Id: Makefile,v 1.1 2008/04/22 17:29:40 kevin Exp $
NAME := collectd
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))