summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@fedoraproject.org>2009-11-25 23:51:39 +0000
committerBill Nottingham <notting@fedoraproject.org>2009-11-25 23:51:39 +0000
commit62d984cca443d1707eaeda6e90e69b329bb24e3a (patch)
treed23cac8e06e56dfe2fdb38f089bd202bc41c5e6a
parent3e09dcfbb9b2f01a1796095b9acb87ba4e4deda4 (diff)
downloadlxc-62d984cca443d1707eaeda6e90e69b329bb24e3a.tar.gz
lxc-62d984cca443d1707eaeda6e90e69b329bb24e3a.tar.xz
lxc-62d984cca443d1707eaeda6e90e69b329bb24e3a.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 ef27b8d..6171731 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
# Makefile for source rpm: lxc
-# $Id$
+# $Id: Makefile,v 1.1 2009/07/26 19:33:56 kevin Exp $
NAME := lxc
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))