summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@fedoraproject.org>2009-11-25 23:13:24 +0000
committerBill Nottingham <notting@fedoraproject.org>2009-11-25 23:13:24 +0000
commitb3b484744623351c2b6c890dd2c8d77e7c730936 (patch)
tree19ff9268a0888bf595806a3159e1352fd3117080
parent9e44a20e8d49839d969be7015dffc0499279b94c (diff)
downloadrubygem-nokogiri-b3b484744623351c2b6c890dd2c8d77e7c730936.tar.gz
rubygem-nokogiri-b3b484744623351c2b6c890dd2c8d77e7c730936.tar.xz
rubygem-nokogiri-b3b484744623351c2b6c890dd2c8d77e7c730936.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 9f368d9..0fe3f94 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
# Makefile for source rpm: rubygem-nokogiri
-# $Id$
+# $Id: Makefile,v 1.1 2009/01/19 23:00:12 kevin Exp $
NAME := rubygem-nokogiri
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))