summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@fedoraproject.org>2009-11-25 23:13:14 +0000
committerBill Nottingham <notting@fedoraproject.org>2009-11-25 23:13:14 +0000
commitdbd99e6cc6e50cf2296ac9ada33a646e6ea2f4bc (patch)
tree82ddeca43969c76f02e6bc9f056762bc3286aa38
parent597ff1b6197a9f6149627c84e7019dc0f9d2ad2c (diff)
downloadrabbitmq-server-dbd99e6cc6e50cf2296ac9ada33a646e6ea2f4bc.tar.gz
rabbitmq-server-dbd99e6cc6e50cf2296ac9ada33a646e6ea2f4bc.tar.xz
rabbitmq-server-dbd99e6cc6e50cf2296ac9ada33a646e6ea2f4bc.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 a2004a1..336a2d8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
# Makefile for source rpm: rabbitmq-server
-# $Id$
+# $Id: Makefile,v 1.1 2009/05/21 23:33:32 kevin Exp $
NAME := rabbitmq-server
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))