summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@fedoraproject.org>2009-11-26 01:28:31 +0000
committerBill Nottingham <notting@fedoraproject.org>2009-11-26 01:28:31 +0000
commit4c403863186ad3b79ae6ad82378bb6d38d1de134 (patch)
treedd662153f72d731c69da2468547d1a4f8a4c5429
parent550a17c83f39a989484c1e8bd9f119b434815386 (diff)
downloadcgit_EL6-EL-6-split.tar.gz
Fix typo that causes a failure to update the common directory. (relengEL-6-split
#2781)
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 288dc30..5f56baa 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
# Makefile for source rpm: cgit
-# $Id$
+# $Id: Makefile,v 1.1 2009/01/13 20:31:07 kevin Exp $
NAME := cgit
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))