summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBill Nottingham <notting@fedoraproject.org>2009-11-26 01:31:15 +0000
committerBill Nottingham <notting@fedoraproject.org>2009-11-26 01:31:15 +0000
commitf2443ca7c5a1e1c2fd8bc71e1d5730814f22a58e (patch)
treed91018202b3f59331e299f531ff352b77dc03d41 /Makefile
parentc52c6861665a63f2183c2bab5ce54f74d92de5d2 (diff)
downloadcollectd-f2443ca7c5a1e1c2fd8bc71e1d5730814f22a58e.tar.gz
collectd-f2443ca7c5a1e1c2fd8bc71e1d5730814f22a58e.tar.xz
collectd-f2443ca7c5a1e1c2fd8bc71e1d5730814f22a58e.zip
Fix typo that causes a failure to update the common directory. (releng
#2781)
Diffstat (limited to 'Makefile')
-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))