summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@fedoraproject.org>2009-11-25 22:47:30 +0000
committerBill Nottingham <notting@fedoraproject.org>2009-11-25 22:47:30 +0000
commit624ff5b45816e17a90ad03318cbc60804cba00ac (patch)
tree0da720e97a4d3f29faa0e57fe222794bb7cf7d8f
parentd6e9b1c02969096d66ccc7f6c977ecb64b26bffe (diff)
downloadcgit_EL6-F-13-split.tar.gz
Fix typo that causes a failure to update the common directory. (relengF-13-startF-13-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))