summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@fedoraproject.org>2009-11-25 23:13:22 +0000
committerBill Nottingham <notting@fedoraproject.org>2009-11-25 23:13:22 +0000
commitfb80ed88cc5345960fe71c31960f54ff69a9d6ae (patch)
tree67ee19f34936be7a40d579e22b4419516b0cbda2
parent3b08e13c9745d571169183caf4dca54170847158 (diff)
downloadrubygem-activesupport-fb80ed88cc5345960fe71c31960f54ff69a9d6ae.tar.gz
rubygem-activesupport-fb80ed88cc5345960fe71c31960f54ff69a9d6ae.tar.xz
rubygem-activesupport-fb80ed88cc5345960fe71c31960f54ff69a9d6ae.zip
Fix typo that causes a failure to update the common directory. (releng
#2781)
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ea5b4ad..f879682 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ NAME := rubygem-activesupport
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))