summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@fedoraproject.org>2009-11-25 23:19:02 +0000
committerBill Nottingham <notting@fedoraproject.org>2009-11-25 23:19:02 +0000
commitc4d01a68bf03e603919c66943e5fca0438783953 (patch)
tree29c38b5e43175503ad61a860257226b772097cdb
parent72eeed1efddd15d75bbd9d1e89321df4595ba021 (diff)
downloadmutter-c4d01a68bf03e603919c66943e5fca0438783953.tar.gz
mutter-c4d01a68bf03e603919c66943e5fca0438783953.tar.xz
mutter-c4d01a68bf03e603919c66943e5fca0438783953.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 11a40bb..3cb23c2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
# Makefile for source rpm: mutter
-# $Id$
+# $Id: Makefile,v 1.1 2009/07/23 16:36:50 tibbs Exp $
NAME := mutter
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))