summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@fedoraproject.org>2009-11-25 23:18:45 +0000
committerBill Nottingham <notting@fedoraproject.org>2009-11-25 23:18:45 +0000
commitb9986d793d8cdc4eac9f7f78b48096009a90947e (patch)
tree0e2371010c01dea8d7080bf1ce8f02265e98c66c
parentacd3738ab03cbcd164b1f56920ea77973db79931 (diff)
downloadmesa-b9986d793d8cdc4eac9f7f78b48096009a90947e.tar.gz
mesa-b9986d793d8cdc4eac9f7f78b48096009a90947e.tar.xz
mesa-b9986d793d8cdc4eac9f7f78b48096009a90947e.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 605e4f3..de95e59 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
# Makefile for source rpm: mesa
-# $Id: Makefile,v 1.1 2005/09/12 18:26:05 mharris Exp $
+# $Id: Makefile,v 1.2 2007/10/15 19:08:30 notting Exp $
NAME := mesa
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))